/* ═══════════════════════════════════════════════════
   MEGG — style.css
   Identidade visual: dark slate + amber + white
   ═══════════════════════════════════════════════════ */

/* ── RESET & BASE ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; overflow-x: hidden; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #f8fafc;
  color: #131820;
  overflow-x: hidden;
  line-height: 1.6;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }

/* ── TOKENS ────────────────────────────────────── */
:root {
  --amber:      #f59f0a;
  --amber-dark: #c47f08;
  --amber-600:  #d97706;
  --amber-light: rgba(245,159,10,0.12);
  --s50:  #f8fafc;
  --s100: #f1f5f9;
  --s200: #e2e8f0;
  --s300: #cbd5e1;
  --s400: #94a3b8;
  --s500: #64748b;
  --s600: #475569;
  --s700: #334155;
  --s800: #1e293b;
  --s900: #0f172a;
  --s950: #020617;
  --green:      #22c55e;
  --green-dark: #16a34a;
  --red:        #ef4444;
  --white:      #ffffff;
  --nav-h:      72px;
  --r-sm: 0.375rem;
  --r-md: 0.5rem;
  --r-lg: 0.75rem;
  --r-xl: 1rem;
  --r-2xl: 1.5rem;
  --r-3xl: 2rem;
  --r-4xl: 2.5rem;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -2px rgba(0,0,0,.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,.35);
}


/* ── logo ──────────────────────────────── */


.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
  transition: opacity 0.2s ease;
  flex-shrink: 0;
}

.nav-logo:hover {
  opacity: 0.9;
}

.nav-logo-img {
  display: block;
  height: 150px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}



/* ── LAYOUT UTILS ──────────────────────────────── */
.wrap { max-width: 80rem; margin-inline: auto; padding-inline: 1.5rem; }
.wrap-sm { max-width: 56rem; margin-inline: auto; padding-inline: 1.5rem; }
.section-tag {
  display: block;
  color: #b45309;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.875rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.025em;
}
.section-desc {
  font-size: 1.1rem;
  color: var(--s500);
  line-height: 1.75;
  max-width: 40rem;
}

/* ── BUTTONS ───────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  border-radius: var(--r-md);
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn-amber {
  background: var(--amber);
  color: var(--s950);
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 900;
  border-radius: var(--r-md);
}
.btn-amber:hover { background: var(--amber-600); }

.btn-amber-lg {
  background: var(--amber);
  color: var(--s950);
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
  font-weight: 900;
  border-radius: var(--r-md);
}
.btn-amber-lg:hover { background: var(--amber-600); }

.btn-dark {
  background: var(--s950);
  color: var(--white);
  padding: 1.125rem 2.25rem;
  font-size: 1.1rem;
  font-weight: 900;
  border-radius: var(--r-xl);
}
.btn-dark:hover { background: var(--s800); }

.btn-green {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--green);
  color: var(--s950);
  padding: 1.25rem 2rem;
  font-size: 1.4rem;
  font-weight: 900;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  transition: all 0.2s ease;
}
.btn-green:hover { background: var(--green-dark); box-shadow: 0 20px 25px -5px rgba(34,197,94,.25); }
.btn-green:active { transform: scale(0.97); }
.btn-green svg { width: 2rem; height: 2rem; flex-shrink: 0; }

.btn-wa-nav {
  background: var(--amber);
  color: var(--s950);
  font-weight: 900;
  font-size: 0.78rem;
  padding: 0.6rem 1.1rem;
  border-radius: var(--r-lg);
  letter-spacing: 0.02em;
  transition: background 0.2s;
}
.btn-wa-nav:hover { background: var(--amber-600); }

/* ── NAVBAR ────────────────────────────────────── */
#navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--s900);
  border-bottom: 1px solid var(--s800);
  transition: all 0.3s ease;
  height: var(--nav-h);
  display: flex;
  align-items: center;
}
#navbar.scrolled {
  background: rgba(15,23,42,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: rgba(255,255,255,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.05em;
  transition: color 0.2s;
}
.nav-logo:hover { color: var(--amber); }
.nav-logo svg { color: var(--amber); width: 28px; height: 28px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-links a {
  color: var(--s300);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
#mob-btn {
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--white);
  padding: 0.375rem;
  transition: color 0.2s;
}
#mob-btn:hover { color: var(--amber); }
#mob-btn svg { width: 2rem; height: 2rem; }
#icon-close { display: none; }
#mob-menu {
  display: none;
  background: var(--s900);
  border-top: 1px solid var(--s800);
}
#mob-menu.open { display: block; }
.mob-links {
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1.5rem 1.75rem;
  gap: 0;
}
.mob-links a {
  color: var(--white);
  font-weight: 700;
  font-size: 1.15rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.mob-links a:last-of-type { border-bottom: none; }
.mob-links a:hover { color: var(--amber); }
.mob-links .btn-wa-mob {
  display: block;
  text-align: center;
  background: var(--amber);
  color: var(--s950);
  font-weight: 900;
  font-size: 1rem;
  padding: 0.875rem;
  border-radius: var(--r-lg);
  margin-top: 1.25rem;
  border-bottom: none !important;
}
.mob-links .btn-wa-mob:hover { background: var(--amber-600); color: var(--s950); }

/* ── HERO ──────────────────────────────────────── */
#inicio {
  background: var(--s900);
  color: var(--white);
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
/* subtle grid bg */
#inicio::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
/* amber glow top right */
#inicio::after {
  content: '';
  position: absolute;
  top: -10rem;
  right: -10rem;
  width: 40rem;
  height: 40rem;
  background: radial-gradient(circle, rgba(245,159,10,0.15) 0%, transparent 65%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  padding-block: 5rem;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245,159,10,0.12);
  border: 1px solid rgba(245,159,10,0.25);
  color: var(--amber);
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  width: fit-content;
}
.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  font-weight: 900;
  line-height: 1.07;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero-title .accent { color: var(--amber); }
.hero-desc {
  font-size: 1.15rem;
  color: var(--s300);
  line-height: 1.7;
  margin-bottom: 0.75rem;
  max-width: 38rem;
}
.hero-subdesc {
  font-size: 0.95rem;
  color: var(--s500);
  line-height: 1.6;
  margin-bottom: 2.25rem;
  max-width: 38rem;
}
.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}
.hero-guarantee {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--s400);
}
.hero-guarantee svg { color: var(--green); width: 16px; height: 16px; flex-shrink: 0; }
.hero-img-wrap {
  position: relative;
}
.hero-glow {
  position: absolute;
  inset: -1.5rem;
  background: rgba(245,159,10,0.18);
  filter: blur(3.5rem);
  border-radius: 9999px;
  pointer-events: none;
}
.hero-img {
  width: 100%;
  height: 36rem;
  object-fit: cover;
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-2xl);
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  z-index: 1;
}
/* trust bar */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 2rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 2rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--s400);
  font-weight: 500;
}
.trust-item svg { color: var(--amber); width: 16px; height: 16px; flex-shrink: 0; }

/* ── URGENCY BANNER ────────────────────────────── */
.urgency-banner {
  background: linear-gradient(135deg, var(--s800), var(--s900));
  border-top: 1px solid var(--s700);
  border-bottom: 1px solid rgba(245,159,10,0.2);
  padding: 1rem;
  text-align: center;
}
.urgency-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  font-size: 0.95rem;
  color: var(--s300);
}
.urgency-inner strong { color: var(--amber); }
.urgency-inner .dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 9999px;
  display: inline-block;
  animation: blink 1.5s infinite;
  flex-shrink: 0;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* ── PAIN SECTION ──────────────────────────────── */
#problemas {
  background: var(--white);
  padding-block: 5.5rem;
}
.pain-intro {
  text-align: center;
  margin-bottom: 3.5rem;
}
.pain-intro .section-title { color: var(--s900); margin-bottom: 1rem; }
.pain-intro .section-desc { margin: 0 auto; text-align: center; }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}
.pain-card {
  background: var(--s50);
  border: 1px solid var(--s200);
  border-left: 4px solid var(--red);
  border-radius: var(--r-lg);
  padding: 1.75rem;
}
.pain-card-icon { font-size: 1.75rem; margin-bottom: 0.875rem; }
.pain-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--s900);
  margin-bottom: 0.5rem;
}
.pain-card p { font-size: 0.95rem; color: var(--s600); line-height: 1.65; }
.pain-cta {
  text-align: center;
  background: linear-gradient(135deg, var(--s900), var(--s800));
  border-radius: var(--r-xl);
  padding: 2.5rem;
  color: var(--white);
}
.pain-cta h3 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.pain-cta p { font-size: 1.05rem; color: var(--s300); margin-bottom: 1.75rem; }

/* ── ABOUT ─────────────────────────────────────── */
#sobre {
  background: var(--s50);
  padding-block: 5.5rem;
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--r-4xl);
  box-shadow: var(--shadow-xl);
}
.about-tag { margin-bottom: 0.75rem; }
.about-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  color: var(--s900);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}
.about-lead {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--s700);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.about-text {
  font-size: 1rem;
  color: var(--s600);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.about-bullets {
  margin: 1.25rem 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.about-bullet {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.975rem;
  color: var(--s700);
  font-weight: 500;
}
.about-bullet svg { color: var(--green); flex-shrink: 0; width: 18px; height: 18px; margin-top: 2px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--s200);
  margin-top: 0.5rem;
}
.stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--s900);
  letter-spacing: -0.03em;
  margin-bottom: 0.25rem;
}
.stat-label { font-size: 0.8rem; color: var(--s500); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }

/* ── SERVICES ──────────────────────────────────── */
#servicos {
  background: var(--white);
  padding-block: 5.5rem;
}
.services-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.services-header .section-title { color: var(--s900); margin-bottom: 1rem; }
.services-header .section-desc { margin: 0 auto; text-align: center; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--s100);
  border-radius: var(--r-3xl);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--amber);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}
.service-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-3px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--amber);
  color: var(--s950);
  border-radius: var(--r-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.service-icon svg { width: 1.75rem; height: 1.75rem; }
.service-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--s900);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.service-text {
  font-size: 0.975rem;
  color: var(--s600);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.service-list-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--s500);
  font-weight: 500;
}
.service-list-item svg { color: var(--amber); width: 14px; height: 14px; flex-shrink: 0; }

/* ── TESTIMONIALS ──────────────────────────────── */
#depoimentos {
  background: var(--s900);
  padding-block: 5.5rem;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.testimonials-header .section-title { color: var(--white); margin-bottom: 0.75rem; }
.testimonials-header .section-desc { color: var(--s400); margin: 0 auto; text-align: center; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--s800);
  border: 1px solid var(--s700);
  border-radius: var(--r-2xl);
  padding: 2rem;
  position: relative;
}
.testimonial-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
  color: var(--amber);
}
.testimonial-stars svg { width: 18px; height: 18px; }
.testimonial-text {
  font-size: 1rem;
  color: var(--s300);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial-text::before { content: '"'; }
.testimonial-text::after  { content: '"'; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.author-avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  background: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 900;
  color: var(--s950);
  flex-shrink: 0;
}
.author-name { font-weight: 700; color: var(--white); font-size: 0.95rem; }
.author-city { font-size: 0.8rem; color: var(--s500); }
.testimonials-cta {
  text-align: center;
  margin-top: 2.5rem;
}
.testimonials-cta p {
  color: var(--s400);
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

/* ── PORTFOLIO ─────────────────────────────────── */
#portfolio {
  background: var(--s950);
  padding-block: 5.5rem;
  overflow: hidden;
}
.portfolio-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.portfolio-header .section-title {
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.portfolio-header .section-desc { color: var(--s400); margin: 0 auto; text-align: center; }
.carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  padding-bottom: 1.5rem;
}
.carousel::-webkit-scrollbar { display: none; }
.carousel-item {
  flex: 0 0 300px;
  scroll-snap-align: center;
  background: var(--s800);
  border-radius: var(--r-2xl);
  overflow: hidden;
  border: 1px solid var(--s700);
  transition: transform 0.3s, box-shadow 0.3s;
}
.carousel-item:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,.4); }
.carousel-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.carousel-body { padding: 1.5rem; }
.carousel-badge {
  display: inline-block;
  background: rgba(245,159,10,0.15);
  color: var(--amber);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
}
.carousel-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.carousel-desc { font-size: 0.875rem; color: var(--s400); line-height: 1.6; }
.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.carousel-btn {
  width: 3rem; height: 3rem;
  border-radius: 9999px;
  background: var(--s800);
  color: var(--white);
  border: 1px solid var(--s700);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.carousel-btn:hover { background: var(--amber); color: var(--s950); border-color: var(--amber); }
.carousel-btn svg { width: 1.25rem; height: 1.25rem; }

/* ── DIFFERENTIATORS ───────────────────────────── */
#diferenciais {
  background: var(--s900);
  color: var(--white);
  padding-block: 5.5rem;
  border-top: 1px solid var(--s800);
}
.diff-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.diff-header .section-tag { color: var(--amber); }
.diff-header .section-title { color: var(--white); margin-bottom: 0.75rem; }
.diff-header .section-desc { color: var(--s400); margin: 0 auto; text-align: center; }
.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
.diff-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.diff-icon { color: var(--amber); margin-bottom: 1.25rem; }
.diff-icon svg { width: 3rem; height: 3rem; }
.diff-title { font-size: 1.15rem; font-weight: 800; margin-bottom: 0.625rem; letter-spacing: -0.01em; }
.diff-text { color: var(--s400); font-size: 0.95rem; line-height: 1.7; }

/* ── FAQ ───────────────────────────────────────── */
#faq {
  background: var(--white);
  padding-block: 5.5rem;
}
.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}
.faq-header .section-title { color: var(--s900); margin-bottom: 0.75rem; }
.faq-header .section-desc { margin: 0 auto; text-align: center; }
.faq-list {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  border: 1px solid var(--s200);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--amber); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  color: var(--s900);
  background: var(--white);
  transition: background 0.2s;
  user-select: none;
}
.faq-question:hover { background: var(--s50); }
.faq-chevron {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--amber);
  transition: transform 0.3s ease;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  background: var(--s50);
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.975rem;
  color: var(--s600);
  line-height: 1.75;
}

/* ── SOCIAL PROOF / COVERAGE ───────────────────── */
#credibilidade {
  background: var(--amber);
  padding-block: 5.5rem;
  overflow: hidden;
}
.proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
.proof-title {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 900;
  color: var(--s900);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}
.proof-desc {
  font-size: 1.1rem;
  color: rgba(15,23,42,0.75);
  font-weight: 500;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}
.location-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--s950);
}
.location-item svg { width: 1.25rem; height: 1.25rem; flex-shrink: 0; }
.proof-guarantee {
  background: rgba(15,23,42,0.08);
  border-radius: var(--r-lg);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.proof-guarantee svg { color: var(--s900); flex-shrink: 0; margin-top: 2px; width: 20px; height: 20px; }
.proof-guarantee p { font-size: 0.9rem; color: var(--s800); font-weight: 600; line-height: 1.6; }
.proof-img-wrap { position: relative; }
.proof-img-bg {
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,0.12);
  border-radius: var(--r-4xl);
  transform: rotate(3deg);
}
.proof-img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
  border-radius: var(--r-4xl);
  box-shadow: var(--shadow-2xl);
  position: relative;
  z-index: 1;
}

/* ── CONTACT ────────────────────────────────────── */
#contato {
  background: var(--s50);
  padding-block: 5.5rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}
.contact-tag { margin-bottom: 0.75rem; }
.contact-title {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 900;
  color: var(--s900);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
}
.contact-subtitle {
  font-size: 1rem;
  color: var(--s600);
  margin-bottom: 2rem;
  line-height: 1.65;
}
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.875rem; font-weight: 700; color: var(--s800); margin-bottom: 0.5rem; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.875rem 1.125rem;
  background: var(--white);
  border: 2px solid var(--s200);
  border-radius: var(--r-lg);
  font-size: 1rem;
  font-weight: 500;
  font-family: inherit;
  color: var(--s900);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(245,159,10,0.15);
}
.form-textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.btn-submit {
  width: 100%;
  background: var(--amber);
  color: var(--s950);
  font-weight: 900;
  font-size: 1.1rem;
  padding: 1rem;
  border-radius: var(--r-lg);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
  margin-top: 0.5rem;
}
.btn-submit:hover { background: var(--amber-600); box-shadow: 0 20px 25px -5px rgba(245,159,10,.2); }
.btn-submit:active { transform: scale(0.98); }
#contact-status {
  display: none;
  margin-bottom: 1.25rem;
  padding: 0.75rem 1rem;
  border-radius: var(--r-lg);
  font-weight: 700;
  font-size: 0.95rem;
}
#contact-status.success { background: var(--green); color: var(--white); display: block; }
#contact-status.error { background: var(--red); color: var(--white); display: block; }
.contact-aside {
  background: var(--s900);
  padding: 2.5rem;
  border-radius: var(--r-4xl);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}
.aside-title {
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
}
.aside-desc { font-size: 1rem; color: var(--s400); line-height: 1.7; margin-bottom: 1.75rem; }
.aside-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.75rem;
  border-top: 1px solid var(--s800);
}
.aside-info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--s400);
}
.aside-info-item svg { color: var(--amber); flex-shrink: 0; width: 18px; height: 18px; }
.aside-info-item strong { color: var(--white); }

/* ── FOOTER ─────────────────────────────────────── */
footer {
  background: var(--s950);
  color: var(--white);
  padding-block: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand-name {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.footer-brand-name svg { color: var(--amber); }
.footer-brand-desc { font-size: 0.95rem; color: var(--s400); line-height: 1.75; max-width: 24rem; }
.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { font-size: 0.95rem; color: var(--s300); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.95rem;
  color: var(--s300);
  margin-bottom: 0.75rem;
}
.footer-contact-item svg { color: var(--amber); flex-shrink: 0; width: 1.1rem; height: 1.1rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--s500);
}
.footer-bottom a { color: var(--amber); }

/* ── WHATSAPP FLOAT ─────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 64px;
  height: 64px;
  background: #25d366;
  color: var(--white);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
  z-index: 100;
  transition: transform 0.3s, box-shadow 0.3s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 12px 32px rgba(37,211,102,0.5); }
.wa-float svg { width: 36px; height: 36px; }

/* ── REVEAL ANIMATIONS ──────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-anim { opacity: 0; animation: fadeUp 0.65s cubic-bezier(0.22,1,0.36,1) forwards; }
.d0 { animation-delay: 0s; }
.d1 { animation-delay: 0.1s; }
.d2 { animation-delay: 0.2s; }
.d3 { animation-delay: 0.3s; }
.d4 { animation-delay: 0.45s; }
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── RESPONSIVE ─────────────────────────────────── */
@media (min-width: 480px) {
  .hero-cta-group { flex-direction: row; align-items: center; }
  .carousel-item { flex: 0 0 380px; }
}
@media (min-width: 768px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .wrap { padding-inline: 2rem; }
  .hero-grid { grid-template-columns: 55% 45%; padding-block: 6rem; }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .about-img-wrap { order: 1; }
  .about-content { order: 2; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .contact-aside { padding: 3.5rem; }
  .diff-grid { grid-template-columns: repeat(4, 1fr); }
  .proof-grid { grid-template-columns: 55% 45%; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .nav-links { display: flex; }
  #mob-btn { display: none !important; }
  .carousel-nav { display: none; }
  .proof-img { aspect-ratio: 1; }
}
@media (max-width: 1023px) {
  .nav-links { display: none !important; }
  #mob-btn { display: flex !important; }
}
@media (max-width: 640px) {
  .diff-grid { grid-template-columns: 1fr 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .stat-num { font-size: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
}
