/* ============================================================
   SUPORTE 24HRS ONLINE — STYLESHEET
   Tema: Dark Elegante | Verde Escuro + Preto + Dourado
   ============================================================ */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-dark:       #0a0f0a;
  --bg-card:       #111811;
  --bg-section:    #0d130d;
  --bg-alt:        #0f160f;
  --green-primary: #1a8a3a;
  --green-light:   #22c55e;
  --green-glow:    #16a34a;
  --gold:          #c9a84c;
  --gold-light:    #f0c96a;
  --text-primary:  #f0f4f0;
  --text-secondary:#a8b8a8;
  --text-muted:    #6b7b6b;
  --border:        rgba(34,197,94,0.15);
  --border-hover:  rgba(34,197,94,0.4);
  --shadow-green:  0 0 30px rgba(26,138,58,0.2);
  --radius:        12px;
  --radius-lg:     20px;
  --transition:    0.3s ease;
  --font-body:     'Inter', sans-serif;
  --font-display:  'Playfair Display', serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- TYPOGRAPHY ---- */
.section-tag {
  display: inline-block;
  background: rgba(34,197,94,0.12);
  color: var(--green-light);
  border: 1px solid rgba(34,197,94,0.3);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 600px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .section-subtitle { margin: 0 auto; }

.highlight { color: var(--green-light); }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-glow));
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(26,138,58,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(26,138,58,0.5);
  background: linear-gradient(135deg, var(--green-glow), var(--green-light));
}

.btn-primary.btn-large { padding: 18px 36px; font-size: 1.05rem; }

.btn-primary.btn-pulse {
  animation: pulse-green 2.5s infinite;
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 4px 20px rgba(26,138,58,0.35); }
  50%       { box-shadow: 0 4px 40px rgba(34,197,94,0.7); }
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-primary);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  border: 1px solid var(--border-hover);
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: rgba(34,197,94,0.08);
  border-color: var(--green-light);
  color: var(--green-light);
}

/* ---- DISCLAIMER BANNER ---- */
.disclaimer-banner {
  background: #1a1a1a;
  border-bottom: 1px solid #333;
  padding: 12px 0;
  position: relative;
  z-index: 1001;
}

.disclaimer-content {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.8rem;
  color: #a8b8a8;
  line-height: 1.5;
}

.disclaimer-content i {
  color: #c9a84c;
  font-size: 1.1rem;
  margin-top: 2px;
}

.disclaimer-content strong {
  color: #f0c96a;
}

/* ---- HEADER / NAVBAR ---- */
#header {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,15,10,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

#header.scrolled {
  background: rgba(10,15,10,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1rem;
}

.logo-text {
  font-size: 1.05rem;
  color: var(--text-primary);
  letter-spacing: -0.3px;
}

.logo-text strong { color: var(--green-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--green-light);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }

.btn-whatsapp-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-primary);
  color: #fff;
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-whatsapp-nav:hover {
  background: var(--green-light);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,15,10,0.92) 0%,
    rgba(10,15,10,0.75) 55%,
    rgba(10,15,10,0.3) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 80px;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.35);
  color: var(--green-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #fff;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(240,244,240,0.8);
  margin-bottom: 36px;
  max-width: 540px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.stat { display: flex; flex-direction: column; }
.stat-num { font-size: 1.6rem; font-weight: 800; color: var(--green-light); line-height: 1; }
.stat-label { font-size: 0.78rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
}

.trust-item i {
  color: var(--green-light);
  font-size: 1.1rem;
}

/* ---- SOBRE ---- */
.sobre {
  padding: 100px 0;
  background: var(--bg-section);
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sobre-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.sobre-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), var(--shadow-green);
}

.sobre-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--bg-card);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.sobre-badge-float i {
  font-size: 1.8rem;
  color: var(--gold);
}

.sobre-badge-float strong { display: block; font-size: 0.95rem; color: var(--text-primary); }
.sobre-badge-float span  { font-size: 0.8rem; color: var(--text-secondary); }

.sobre-content p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 1rem;
}

.sobre-content p strong { color: var(--green-light); }

.sobre-list {
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sobre-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.sobre-list li i { color: var(--green-light); font-size: 1rem; flex-shrink: 0; }

/* ---- DIFERENCIAIS ---- */
.diferenciais {
  padding: 100px 0;
  background: var(--bg-dark);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-primary), var(--green-light));
  opacity: 0;
  transition: var(--transition);
}

.card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4), var(--shadow-green);
}

.card:hover::before { opacity: 1; }

.card-icon {
  width: 56px; height: 56px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--green-light);
  margin-bottom: 20px;
  transition: var(--transition);
}

.card:hover .card-icon {
  background: rgba(34,197,94,0.18);
  border-color: var(--green-light);
}

.card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ---- COMO FUNCIONA ---- */
.como-funciona {
  padding: 100px 0;
  background: var(--bg-alt);
}

.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 56px;
}

.step {
  flex: 1;
  max-width: 300px;
  text-align: center;
  padding: 0 24px;
}

.step-number {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(34,197,94,0.12);
  font-family: var(--font-display);
  line-height: 1;
  margin-bottom: 16px;
}

.step-icon {
  width: 72px; height: 72px;
  background: rgba(34,197,94,0.1);
  border: 2px solid rgba(34,197,94,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  color: var(--green-light);
  margin: 0 auto 20px;
  transition: var(--transition);
}

.step:hover .step-icon {
  background: rgba(34,197,94,0.2);
  border-color: var(--green-light);
  box-shadow: 0 0 20px rgba(34,197,94,0.3);
}

.step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

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

.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  color: var(--green-primary);
  font-size: 1.2rem;
  opacity: 0.5;
}

.como-funciona-cta { text-align: center; }

/* ---- ENTREGA ---- */
.entrega {
  padding: 100px 0;
  background: var(--bg-section);
}

.entrega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.entrega-content p {
  color: var(--text-secondary);
  margin-bottom: 32px;
  font-size: 1rem;
}

.entrega-opcoes {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.entrega-opcao {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  transition: var(--transition);
}

.entrega-opcao:hover {
  border-color: var(--border-hover);
}

.entrega-icon {
  width: 48px; height: 48px;
  background: rgba(34,197,94,0.1);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--green-light);
  flex-shrink: 0;
}

.entrega-opcao strong { display: block; font-size: 0.95rem; color: var(--text-primary); margin-bottom: 2px; }
.entrega-opcao span  { font-size: 0.85rem; color: var(--text-secondary); }

.entrega-map-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  text-align: center;
  box-shadow: var(--shadow-green);
}

.entrega-map-card > i {
  font-size: 3.5rem;
  color: var(--green-light);
  margin-bottom: 20px;
  display: block;
}

.entrega-map-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.entrega-map-card > p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.entrega-estados {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.entrega-estados span {
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
  color: var(--green-light);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
}

/* ---- CTA SECTION ---- */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a1a0a 0%, #0d200d 50%, #0a1a0a 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-inner {
  display: flex;
  align-items: center;
  gap: 64px;
}

.cta-img {
  width: 280px;
  height: 280px;
  object-fit: contain;
  border-radius: 50%;
  border: 4px solid rgba(34,197,94,0.3);
  box-shadow: 0 0 40px rgba(34,197,94,0.2);
  flex-shrink: 0;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.cta-content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 500px;
}

.cta-note {
  margin-top: 16px !important;
  font-size: 0.85rem !important;
  color: var(--text-muted) !important;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cta-note i { color: var(--green-primary); }

/* ---- CONTATO ---- */
.contato {
  padding: 100px 0;
  background: var(--bg-dark);
}

.contato-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contato-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  transition: var(--transition);
}

.contato-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.contato-icon {
  width: 64px; height: 64px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--green-light);
  margin: 0 auto 20px;
}

.contato-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.contato-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.badge-online {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  color: var(--green-light);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
}

.badge-online i { font-size: 0.6rem; animation: blink 1.5s infinite; }

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.badge-info {
  display: inline-block;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-light);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding-top: 72px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 16px 0 24px;
  max-width: 280px;
  line-height: 1.65;
}

.btn-whatsapp-footer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.3);
  color: var(--green-light);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
}

.btn-whatsapp-footer:hover {
  background: rgba(34,197,94,0.2);
  border-color: var(--green-light);
}

.footer-links h4,
.footer-empresa h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-links ul { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: var(--transition);
}

.footer-links a:hover { color: var(--green-light); }

.footer-empresa p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
  line-height: 1.6;
}

.footer-empresa strong { color: var(--text-primary); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}

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

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--text-muted);
  font-size: 0.82rem;
  transition: var(--transition);
}

.footer-bottom a:hover { color: var(--green-light); }

/* ---- WHATSAPP FLOAT ---- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px; height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: var(--transition);
  animation: float-bounce 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.7);
}

.whatsapp-float-tooltip {
  position: absolute;
  right: 70px;
  background: var(--bg-card);
  color: var(--text-primary);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid var(--border);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-float-tooltip { opacity: 1; }

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

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .sobre-grid, .entrega-grid { gap: 48px; }
}

@media (max-width: 768px) {
  .nav-links, .btn-whatsapp-nav { display: none; }
  .hamburger { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(10,15,10,0.98);
    backdrop-filter: blur(12px);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open + .btn-whatsapp-nav {
    display: none;
  }

  .sobre-grid, .entrega-grid, .cta-inner { grid-template-columns: 1fr; flex-direction: column; }
  .sobre-badge-float { right: 0; bottom: -10px; }
  .cta-img { width: 220px; height: 220px; margin: 0 auto; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-content p { margin: 0 auto 32px; }
  .cta-note { justify-content: center; }
  .steps-grid { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); padding-top: 0; padding: 8px 0; }
  .contato-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; }
  .hero-stats { gap: 16px; }
  .trust-bar-inner { gap: 20px; }
  .cards-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .section-title { font-size: 1.6rem; }
  .hero-title { font-size: 2rem; }
  .container { padding: 0 16px; }
}
