/* 
  The Great Deal Idiomas - Design System & Stylesheet
  Author: Antigravity
  Year: 2026
*/

/* -----------------------------------------
   1. Variáveis e Reset
----------------------------------------- */
:root {
  /* Cores Principais */
  --bg-dark: #070814;
  --bg-dark-alt: #0C0D22;
  --bg-dark-card: #151834;
  
  --primary: #E11B22;
  --primary-hover: #C21319;
  --primary-rgb: 225, 27, 34;
  
  --accent: #1B1E5C;
  --accent-hover: #121442;
  
  --whatsapp: #25D366;
  --whatsapp-hover: #1EBE57;
  
  /* Cores de Texto */
  --text-light: #F8FAFC;
  --text-muted: #94A3B8;
  --text-dark: #0F172A;
  --text-dark-muted: #475569;
  
  /* Fontes */
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Transições e Bordas */
  --transition-fast: all 0.2s ease-in-out;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --border-radius-full: 9999px;
  
  /* Container Width */
  --container-max-width: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* -----------------------------------------
   2. Componentes Globais & Utilitários
----------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
}

.alternate-bg {
  background-color: var(--bg-dark-alt);
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-title);
  font-weight: 700;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  font-size: 1rem;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.1rem;
}

@media (max-width: 480px) {
  .btn-lg {
    padding: 14px 24px;
    font-size: 1rem;
    width: 100%;
  }
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  color: #FFFFFF;
  box-shadow: 0 10px 25px rgba(var(--primary-rgb), 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(var(--primary-rgb), 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-3px);
}

.btn-whatsapp-header {
  background-color: var(--whatsapp);
  color: white;
  padding: 8px 18px;
  font-size: 0.9rem;
  border-radius: var(--border-radius-sm);
}

.btn-whatsapp-header:hover {
  background-color: var(--whatsapp-hover);
  transform: scale(1.03);
}

.btn-block {
  display: flex;
  width: 100%;
}

/* Títulos de Seção */
.section-header {
  margin-bottom: 60px;
}

.section-tagline {
  font-family: var(--font-title);
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 0.85rem;
  display: inline-block;
  margin-bottom: 12px;
  background: rgba(255, 209, 102, 0.1);
  padding: 4px 12px;
  border-radius: var(--border-radius-full);
}

.section-title {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-light);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-description {
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 650px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  .section-description {
    font-size: 1rem;
  }
}

.text-center {
  text-align: center;
}

/* -----------------------------------------
   3. Top Bar & Header
----------------------------------------- */
.top-bar {
  background-color: #03050B;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 8px 0;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar-links {
  display: flex;
  gap: 20px;
}

.top-bar-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-fast);
}

.top-bar-links a:hover {
  color: var(--primary);
}

@media (max-width: 768px) {
  .top-bar {
    display: none; /* Oculta em celulares para economizar espaço */
  }
}

/* Main Header */
.main-header {
  background-color: rgba(7, 11, 25, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 12px 0;
  transition: var(--transition-smooth);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  display: block;
  height: 64px;
  width: auto;
  transition: var(--transition-smooth);
}

.logo:hover .logo-img {
  transform: scale(1.03);
}

.footer-brand .logo-img {
  height: 76px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .logo-img {
    height: 48px;
  }
  .footer-brand .logo-img {
    height: 60px;
  }
}

.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-link {
  color: var(--text-light);
  text-decoration: none;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition-fast);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link:hover::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.menu-toggle {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
  transition: var(--transition-fast);
}

.menu-toggle:hover {
  color: var(--primary);
}

/* Mobile Nav Menu Show/Hide Logic */
@media (max-width: 991px) {
  .menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-dark-alt);
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
    padding: 24px 0;
    display: none; /* Controlado via JS */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  }
  
  .nav-menu.active {
    display: block;
    animation: slideDown 0.3s ease forwards;
  }
  
  .nav-menu ul {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .btn-whatsapp-header {
    display: none; /* Oculta do topo no mobile, pois teremos botão flutuante e CTA principal */
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* -----------------------------------------
   4. Hero Section
----------------------------------------- */
.hero-section {
  padding: 80px 0 120px 0;
  position: relative;
  background: radial-gradient(circle at 10% 20%, rgba(30, 41, 59, 0.4) 0%, rgba(7, 11, 25, 0) 60%),
              radial-gradient(circle at 90% 80%, rgba(255, 209, 102, 0.03) 0%, rgba(7, 11, 25, 0) 50%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 16px;
  border-radius: var(--border-radius-full);
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.google-badge .stars {
  color: #FBBF24;
  font-size: 0.9rem;
}

.google-badge .badge-text {
  font-size: 0.88rem;
  color: var(--text-light);
}

.hero-title {
  font-family: var(--font-title);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  background: linear-gradient(120deg, #FFFFFF 50%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  color: var(--text-muted);
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-tags {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-tags span {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-tags span i {
  color: var(--primary);
}

/* Imagem Hero */
.hero-image-wrapper {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: visible; /* Necessário para o card flutuante */
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: block;
}

.hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(7, 11, 25, 0.6) 0%, rgba(7, 11, 25, 0) 40%);
  border-radius: var(--border-radius-lg);
  z-index: 1;
}

/* Floating Card */
.floating-card {
  position: absolute;
  bottom: 30px;
  left: -30px;
  background-color: rgba(30, 41, 59, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-md);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 2;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  animation: float 4s ease-in-out infinite;
}

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

.floating-icon {
  background-color: var(--primary);
  color: var(--text-dark);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.floating-text h4 {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFFFFF;
}

.floating-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (max-width: 1199px) {
  .floating-card {
    left: 20px;
    bottom: 20px;
  }
}

@media (max-width: 991px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-title {
    font-size: 2.75rem;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
    width: 100%;
  }

  .hero-tags {
    justify-content: center;
  }

  .hero-image-wrapper {
    max-width: 550px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }
}

/* -----------------------------------------
   5. Diferenciais Section (Grid)
----------------------------------------- */
.features-section {
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  background-color: var(--bg-dark-alt);
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 40px 30px;
  border-radius: var(--border-radius-lg);
  transition: var(--transition-smooth);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--primary-rgb), 0.25);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3), 0 0 30px rgba(var(--primary-rgb), 0.03);
}

.feature-icon-wrapper {
  background: rgba(var(--primary-rgb), 0.08);
  color: var(--primary);
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 24px;
  border: 1px solid rgba(var(--primary-rgb), 0.15);
  transition: var(--transition-fast);
}

.feature-card:hover .feature-icon-wrapper {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  color: #FFFFFF;
  box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.3);
}

.feature-card h3 {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: #FFFFFF;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* -----------------------------------------
   6. Método D.R Section
----------------------------------------- */
.method-container {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  align-items: center;
}

.method-image-wrapper {
  position: relative;
  border-radius: var(--border-radius-lg);
}

.method-image {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.method-badge {
  position: absolute;
  top: 30px;
  right: -20px;
  background-color: var(--accent);
  color: var(--text-dark);
  padding: 16px 20px;
  border-radius: var(--border-radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 10px 25px rgba(56, 189, 248, 0.3);
}

.method-badge .number {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 2rem;
  line-height: 1;
}

.method-badge .label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 35px 0;
}

.step-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.step-number {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--primary);
  background: rgba(var(--primary-rgb), 0.1);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(var(--primary-rgb), 0.2);
}

.step-text h3 {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

@media (max-width: 991px) {
  .method-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .method-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
    order: 2; /* Joga a imagem para baixo no mobile para priorizar a leitura */
  }

  .method-badge {
    right: 20px;
  }
}

/* -----------------------------------------
   7. Reviews Section (Google Reviews)
----------------------------------------- */
.google-rating-card {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--bg-dark-alt);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-lg);
  padding: 24px 40px;
  margin-top: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.google-rating-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.google-rating-logo span {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.1rem;
}

.rating-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.rating-score {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 2.25rem;
  color: #FFFFFF;
}

.rating-stars {
  color: #FBBF24;
  font-size: 1.15rem;
}

.rating-count {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Carrossel de Depoimentos */
.testimonials-carousel-wrapper {
  margin-top: 60px;
  overflow: hidden;
  position: relative;
}

.testimonials-carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.testimonial-card {
  min-width: 100%;
  flex: 0 0 100%;
  padding: 40px;
  background-color: var(--bg-dark-alt);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Em telas maiores, podemos organizar em grid em vez de carrossel de 1 item,
   ou deixar o carrossel mostrar 3 itens lado a lado. Vamos ajustar para mostrar 
   um card robusto no centro */
@media (min-width: 992px) {
  .testimonial-card {
    min-width: 33.333%;
    flex: 0 0 33.333%;
    margin-right: 0px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    background-color: transparent; /* No desktop tiramos o fundo do slider individual */
    border: none;
    box-shadow: none;
    padding: 0 20px;
  }
  
  .testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    transform: none !important; /* Desativa movimentação no desktop */
  }

  .testimonials-carousel-wrapper {
    overflow: visible;
  }

  .carousel-dots {
    display: none !important;
  }

  /* Usando estilização de card para desktop */
  .testimonial-card {
    background-color: var(--bg-dark-alt);
    border: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 35px;
    transition: var(--transition-smooth);
  }

  .testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(var(--primary-rgb), 0.15);
  }
}

.testimonial-rating {
  color: #FBBF24;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 1.05rem;
  color: var(--text-light);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 30px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}

.user-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.15rem;
}

.user-info h4 {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.05rem;
  color: #FFFFFF;
}

.user-info p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Dots Carrossel (Mobile apenas) */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: var(--transition-fast);
}

.dot.active {
  background-color: var(--primary);
  width: 28px;
  border-radius: var(--border-radius-full);
}

/* -----------------------------------------
   8. Contato e Formulário de Leads
----------------------------------------- */
.contact-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: start;
}

.contact-form-wrapper {
  background-color: #FFFFFF;
  color: var(--text-dark);
  border-radius: var(--border-radius-lg);
  padding: 48px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.contact-form-wrapper h3 {
  font-family: var(--font-title);
  font-size: 1.85rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.contact-form-wrapper p {
  color: var(--text-dark-muted);
  font-size: 0.95rem;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #E2E8F0;
  border-radius: var(--border-radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background-color: #F8FAFC;
  outline: none;
  transition: var(--transition-fast);
}

.form-group input::placeholder {
  color: #94A3B8;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--accent-hover);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

.form-privacy {
  font-size: 0.8rem !important;
  color: #94A3B8 !important;
  text-align: center;
  margin-top: 16px;
  margin-bottom: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Success Message Container */
.form-success-message {
  display: none; /* Ativado via JS */
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 0;
}

.form-success-message.active {
  display: flex;
  animation: fadeIn 0.4s ease forwards;
}

.form-success-message i {
  color: var(--whatsapp);
  font-size: 4.5rem;
  margin-bottom: 20px;
}

.form-success-message h4 {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.form-success-message p {
  margin-bottom: 24px;
}

/* Contact Info */
.info-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 35px 0;
}

.info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.info-icon {
  background-color: rgba(56, 189, 248, 0.1);
  color: var(--accent);
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  border: 1px solid rgba(56, 189, 248, 0.15);
}

.info-text h4 {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.info-text p,
.info-text a {
  color: var(--text-muted);
  font-size: 0.95rem;
  text-decoration: none;
}

.info-text a:hover {
  color: var(--accent);
  text-decoration: underline;
}

/* Google Maps Iframe wrapper */
.map-iframe-container {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  height: 250px;
  width: 100%;
}

.map-iframe-container iframe {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 991px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .contact-form-wrapper {
    order: 1; /* Form de lead fica em cima no celular */
    padding: 30px;
  }
}

/* -----------------------------------------
   9. Footer (Rodapé)
----------------------------------------- */
.main-footer {
  background-color: #03050A;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0 0 0;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 20px;
  max-width: 320px;
}

.footer-links h4,
.footer-social h4 {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #FFFFFF;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-fast);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icons a {
  width: 44px;
  height: 44px;
  border-radius: var(--border-radius-md);
  background-color: var(--bg-dark-alt);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  text-decoration: none;
  transition: var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.social-icons a:hover {
  background-color: var(--primary);
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(var(--primary-rgb), 0.2);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 30px 0;
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
}

/* -----------------------------------------
   10. Botão Flutuante do WhatsApp
----------------------------------------- */
.whatsapp-floating-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--whatsapp);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
  z-index: 99;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.whatsapp-floating-btn:hover {
  background-color: var(--whatsapp-hover);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
}

/* Tooltip do botão flutuante */
.whatsapp-floating-btn .tooltip-text {
  visibility: hidden;
  width: 110px;
  background-color: var(--bg-dark-alt);
  color: #FFF;
  text-align: center;
  padding: 6px 10px;
  border-radius: var(--border-radius-sm);
  position: absolute;
  right: 75px;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--font-title);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  transition: opacity 0.3s;
  white-space: nowrap;
}

.whatsapp-floating-btn:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 480px) {
  .whatsapp-floating-btn {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    font-size: 1.85rem;
  }
}

/* -----------------------------------------
   11. Efeitos de Rolagem / Reveal e Fade-In
----------------------------------------- */
.animate-fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-fade-in:nth-child(1) { animation-delay: 0.1s; }
.animate-fade-in:nth-child(2) { animation-delay: 0.2s; }
.animate-fade-in:nth-child(3) { animation-delay: 0.3s; }
.animate-fade-in:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Elementos animados via Scroll (JS coloca classe active) */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.active {
  opacity: 1;
  transform: translateY(0);
}
