/* ============================================
   GOOGLE FONTS
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #0a0a0a;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%; /* Adicionando width: 100% para garantir que o body não se expanda além do viewport */
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

button {
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

/* ============================================
   SCROLLBAR CUSTOMIZATION
   ============================================ */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
  background: #d4af37;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #e6c547;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse-gold {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-slideInLeft {
  animation: slideInLeft 0.6s ease-out forwards;
}

.animate-slideInRight {
  animation: slideInRight 0.6s ease-out forwards;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-bounce {
  animation: bounce 2s infinite;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}



@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #333333;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  height: 70px;
}

.logo img {
  height: 40px;
  width: auto;
  transition: opacity 0.3s ease;
}

.logo:hover img {
  opacity: 0.8;
}

nav {
  display: none;
  gap: 2rem;
}

nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #ffffff;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #d4af37;
}

.cta-button {
  display: none;
  padding: 0.5rem 1.5rem;
  background-color: #d4af37;
  color: #000000;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
}

.cta-button:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  color: #ffffff;
  font-size: 1.5rem;
}

.menu-toggle:hover {
  color: #d4af37;
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  background-color: #0a0a0a;
  border-top: 1px solid #333333;
  padding: 1rem;
  flex-direction: column;
  gap: 0.75rem;
}

..mobile-nav.open {
  display: flex;
}

.mobile-nav .language-switcher {
  display: flex;
  justify-content: center;
  padding: 1rem 0;
  margin-bottom: 1rem;
  border-bottom: 1px solid #333333;
}}

.mobile-nav a {
  padding: 0.5rem 0;
  font-weight: 500;
}

.mobile-nav a:hover {
  color: #d4af37;
}

@media (min-width: 768px) {
  nav {
    display: flex;
  }

  .cta-button {
    display: inline-block;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-nav {
    display: none !important;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 70px;
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  z-index: 0;
}

.hero-glow-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 384px;
  height: 384px;
  background-color: #d4af37;
  border-radius: 50%;
  filter: blur(120px);
}

.hero-glow-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 384px;
  height: 384px;
  background-color: #d4af37;
  border-radius: 50%;
  filter: blur(120px);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-left h1 {
  font-size: 3rem;
  line-height: 1.2;
  color: #ffffff;
}

@media (min-width: 768px) {
  .hero-left h1 {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .hero-left h1 {
    font-size: 4.5rem;
  }
}

.hero-left h1 .accent {
  color: #d4af37;
}

.hero-left p {
  font-size: 1.125rem;
  color: #888888;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.btn-primary {
  padding: 1rem 2rem;
  background-color: #d4af37;
  color: #000000;
  border-radius: 0.5rem;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

.btn-secondary {
  padding: 1rem 2rem;
  border: 2px solid #d4af37;
  color: #d4af37;
  border-radius: 0.5rem;
  font-weight: 600;
  text-align: center;
  background-color: transparent;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: rgba(212, 175, 55, 0.1);
  transform: scale(1.05);
}

.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.hero-card-container {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.hero-card-container img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.5));
}

.hero-card-glow {
  position: absolute;
  inset: 0;
  background-color: rgba(212, 175, 55, 0.2);
  border-radius: 1rem;
  filter: blur(32px);
  z-index: -1;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.scroll-indicator button {
  color: #d4af37;
  font-size: 2rem;
  background: none;
  padding: 0;
}

.scroll-indicator button:hover {
  color: rgba(212, 175, 55, 0.8);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
#services {
  padding: 5rem 0;
  background-color: rgba(42, 42, 42, 0.5);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-header h2 {
    font-size: 3rem;
  }
}

.section-header h2 .accent {
  color: #d4af37;
}

.section-header p {
  font-size: 1.125rem;
  color: #888888;
  max-width: 42rem;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background-color: #1a1a1a;
  border: 1px solid #333333;
  border-radius: 0.75rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: #d4af37;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
  transform: translateY(-8px);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: rgba(212, 175, 55, 0.1);
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  transition: background-color 0.3s ease;
}

.service-card:hover .service-icon {
  background-color: rgba(212, 175, 55, 0.2);
}

.service-icon svg {
  color: #d4af37;
  width: 1.75rem;
  height: 1.75rem;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #ffffff;
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: #d4af37;
}

.service-card p {
  color: #888888;
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-accent {
  display: none;
  height: 4px;
  width: 3rem;
  background-color: #d4af37;
  margin-top: 1rem;
  border-radius: 2px;
}

.service-card:hover .service-accent {
  display: block;
}

.services-footer {
  text-align: center;
  space-y: 1rem;
}

.services-footer p {
  color: #888888;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.services-footer .highlight {
  color: #ffffff;
  font-weight: 600;
}

/* ============================================
   CARD SECTION
   ============================================ */
#card {
  padding: 5rem 0;
  background-color: #0a0a0a;
}

.card-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .card-content {
    grid-template-columns: 1fr 1fr;
  }
}

.card-left h2 {
  font-size: 2.25rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .card-left h2 {
    font-size: 3rem;
  }
}

.card-left h2 .accent {
  color: #d4af37;
}

.card-left p {
  font-size: 1.125rem;
  color: #888888;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.card-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background-color: rgba(42, 42, 42, 0.5);
  border: 1px solid #333333;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background-color: rgba(42, 42, 42, 0.8);
  border-color: #d4af37;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: rgba(212, 175, 55, 0.1);
  border-radius: 0.5rem;
  flex-shrink: 0;
}

.feature-icon svg {
  color: #d4af37;
  width: 1.5rem;
  height: 1.5rem;
}

.feature-content h3 {
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.feature-content p {
  font-size: 0.875rem;
  color: #888888;
}

.card-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-mockup {
  background-color: #000000;
  border-radius: 3rem;
  padding: 0.75rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  max-width: 100%;
  width: 100%;
  max-width: 400px;
}

.phone-mockup img {
  width: 100%;
  height: auto;
  border-radius: 2.5rem;
}

.card-glow-1, .card-glow-2 {
  position: absolute;
  width: 128px;
  height: 128px;
  background-color: rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  filter: blur(32px);
}

.card-glow-1 {
  top: -64px;
  right: -64px;
}

.card-glow-2 {
  bottom: -64px;
  left: -64px;
}

/* ============================================
   DOWNLOAD SECTION
   ============================================ */
#download {
  padding: 5rem 0;
  background-color: rgba(42, 42, 42, 0.5);
}

.download-header {
  text-align: center;
  margin-bottom: 4rem;
}

.download-header h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .download-header h2 {
    font-size: 3rem;
  }
}

.download-header h2 .accent {
  color: #d4af37;
}

.download-header p {
  font-size: 1.125rem;
  color: #888888;
  max-width: 42rem;
  margin: 0 auto;
}

.download-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 32rem;
  margin: 0 auto 4rem;
}

@media (min-width: 768px) {
  .download-cards {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }
}

.download-card {
  background-color: #1a1a1a;
  border: 2px solid #333333;
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.download-card:hover {
  border-color: #d4af37;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
  transform: translateY(-8px);
}

.download-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.download-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: rgba(212, 175, 55, 0.1);
  border-radius: 0.5rem;
  transition: background-color 0.3s ease;
}

.download-card:hover .download-icon {
  background-color: rgba(212, 175, 55, 0.2);
}

.download-icon svg {
  color: #d4af37;
  width: 2rem;
  height: 2rem;
}

.download-card-title {
  display: flex;
  flex-direction: column;
}

.download-card-title small {
  font-size: 0.75rem;
  color: #888888;
}

.download-card-title strong {
  font-size: 1.5rem;
  color: #ffffff;
}

.download-card p {
  color: #888888;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.download-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #d4af37;
  font-weight: 600;
  transition: gap 0.3s ease;
}

.download-card:hover .download-card-link {
  gap: 0.75rem;
}

.app-info {
  background-color: #1a1a1a;
  border: 1px solid #333333;
  border-radius: 1rem;
  padding: 3rem 2rem;
  text-align: center;
}

.app-info-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.app-info-icon img {
  width: 96px;
  height: 96px;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.app-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.app-info p {
  color: #888888;
  margin-bottom: 2rem;
}

.app-info-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .app-info-buttons {
    flex-direction: row;
  }
}

.app-info-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  background-color: #d4af37;
  color: #000000;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.app-info-buttons a:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background-color: rgba(42, 42, 42, 0.8);
  border-top: 1px solid #333333;
}

.footer-content {
  padding: 4rem 0;
}

.footer-quote {
  text-align: center;
  margin-bottom: 3rem;
}

.footer-quote blockquote {
  font-size: 1.125rem;
  color: #ffffff;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.footer-quote .author {
  font-weight: 600;
  color: #ffffff;
  font-style: normal;
}

.footer-quote .author-title {
  color: #888888;
  font-size: 0.95rem;
  font-style: normal;
}

.footer-divider {
  height: 1px;
  background-color: #333333;
  margin: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-section h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.footer-section p {
  color: #888888;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #888888;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #d4af37;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  color: #888888;
  padding-top: 2rem;
  border-top: 1px solid #333333;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: #888888;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #d4af37;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 768px) {
  .hero-left h1 {
    font-size: 2.25rem;
  }

  .section-header h2 {
    font-size: 1.875rem;
  }

  .card-left h2 {
    font-size: 1.875rem;
  }

  .download-header h2 {
    font-size: 1.875rem;
  }
}

/* ============================================
   LANGUAGE SWITCHER STYLES
   ============================================ */
.language-switcher {
  display: flex;
  gap: 0.25rem; /* Reduzindo o espaçamento para mobile */
  align-items: center;
  /* Garante que o switcher fique à direita, antes do menu-toggle em mobile */
  order: 2; 
}



@media (min-width: 768px) {
  .language-switcher {
    /* Em desktop, move o switcher para a direita do cta-button */
    order: 4; 
  }


}

.lang-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px; /* Reduzindo o tamanho para mobile */
  height: 28px; /* Reduzindo o tamanho para mobile */
  border-radius: 50%;
  background-color: #333333; /* Cor de fundo padrão */
  color: #ffffff; /* Cor do texto padrão */
  font-size: 0.7rem; /* Reduzindo a fonte para mobile */
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

@media (min-width: 768px) {
  .lang-icon {
    width: 30px;
    height: 30px;
    font-size: 0.75rem;
  }
}

.lang-icon:hover {
  background-color: #d4af37; /* Cor de fundo no hover (dourado) */
  color: #0a0a0a; /* Cor do texto no hover */
  transform: scale(1.1);
}

.lang-icon.active {
  background-color: #d4af37; /* Cor de fundo para o idioma ativo */
  color: #0a0a0a; /* Cor do texto para o idioma ativo */
  border-color: #ffffff;
}
