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

:root {
  --bg: #0a0a0b;
  --orange: #ff5f0a;
  --orange-soft: rgba(255, 95, 10, 0.15);
  --orange-glow: rgba(255, 95, 10, 0.3);
  --white: #f2f2f4;
  --muted: #5a5a6a;
  --muted2: #888899;
  --card: #111115;
  --border: rgba(255, 255, 255, 0.08);
  --border2: rgba(255, 255, 255, 0.05);
}

html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--white); font-family: 'DM Sans', sans-serif; overflow-x: hidden; }
body::after { content: ''; position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: .10; background-image: url("../img/bg-image.png"); background-size: cover; background-position: center; background-repeat: no-repeat; }


nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; display: flex; align-items: center; justify-content: space-between; padding: 18px 56px; background: rgba(10,10,11,.2); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255,255,255,.03); }
.nav-links { position: absolute; left: 50%; transform: translateX(-50%); }
.logo { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--white); text-decoration: none; display: flex; align-items: center; }
.logo i { color: var(--orange); font-style: italic; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: .9rem; transition: color .2s; }
.nav-links a:hover { color: var(--white); }
.nav-btns { display: flex; gap: 12px; }
.btn-ghost { background: transparent; border: 1px solid var(--border); color: var(--white); padding: 9px 20px; border-radius: 999px; font-family: 'DM Sans', sans-serif; font-size: .88rem; cursor: pointer; transition: border-color .2s; }
.btn-ghost:hover { border-color: rgba(255,255,255,.3); }
.btn-fill { background: var(--orange); border: none; color: #000; padding: 9px 20px; border-radius: 999px; font-family: 'DM Sans', sans-serif; font-size: .88rem; font-weight: 600; cursor: pointer; transition: box-shadow .2s, transform .2s; }
.btn-fill:hover { box-shadow: 0 0 28px var(--orange-glow); transform: translateY(-1px); }


.hero { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 140px 40px 100px; position: relative; overflow: hidden; z-index: 1; background-image: url("../img/hero-bg.png"); background-size: 170%; background-position: 72% center; background-repeat: no-repeat; }
.glow { position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none; }
.glow-1 { width: 700px; height: 700px; background: radial-gradient(circle, rgba(255,95,10,.14), transparent 70%); top: -200px; right: -150px; animation: gfloat 9s ease-in-out infinite; }
.glow-2 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(255,95,10,.09), transparent 70%); bottom: -100px; left: -100px; animation: gfloat 12s ease-in-out infinite reverse; }
@keyframes gfloat { 0%,100%{transform:translateY(0)}50%{transform:translateY(-40px)} }
.badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.04); border: 1px solid var(--border); padding: 7px 18px; border-radius: 999px; font-size: .82rem; color: var(--muted2); margin-bottom: 40px; animation: up .8s .1s both; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 8px #4ade80; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1}50%{opacity:.4} }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(3.8rem,9vw,8rem); line-height: 1.01; letter-spacing: -.04em; margin-bottom: 28px; animation: up .8s .25s both; }
.hero h1 em { color: var(--orange); font-style: italic; }
.hero h1 .ghost { -webkit-text-stroke: 1.5px rgba(255,255,255,.18); color: transparent; }
.hero-sub { font-size: 1.1rem; color: var(--muted2); max-width: 500px; line-height: 1.75; margin-bottom: 48px; animation: up .8s .4s both; }
.hero-actions { display: flex; gap: 14px; justify-content: center; animation: up .8s .55s both; }
@keyframes up { from{opacity:0;transform:translateY(36px)}to{opacity:1;transform:translateY(0)} }


.marquee-bar { padding: 16px 0; overflow: hidden; z-index: 1; position: relative; }
.marquee-inner { display: flex; width: max-content; gap: 56px; animation: mscroll 22s linear infinite; }
.marquee-inner span { font-size: .8rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; white-space: nowrap; }
.marquee-inner .sep { color: var(--orange); opacity: .7; }
@keyframes mscroll { from{transform:translateX(0)}to{transform:translateX(-50%)} }


.section { padding: 80px 56px; max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.label { font-size: .75rem; color: var(--orange); text-transform: uppercase; letter-spacing: .18em; font-weight: 600; margin-bottom: 18px; display: block; }
h2 { font-family: 'Playfair Display', serif; font-size: clamp(2.6rem,5vw,4.5rem); line-height: 1.06; letter-spacing: -.025em; }
h2 em { color: var(--orange); font-style: italic; }
h2 .ghost { -webkit-text-stroke: 1px rgba(255,255,255,.18); color: transparent; }
.section-sub { color: var(--muted2); font-size: 1rem; line-height: 1.75; max-width: 460px; margin-top: 18px; }


.r { opacity: 1; transform: none; transition: opacity .75s ease, transform .75s ease; }
.js-ready .r { opacity: 0; transform: translateY(32px); }
.js-ready .r.v { opacity: 1; transform: none; }
.d1{transition-delay:.1s}.d2{transition-delay:.2s}.d3{transition-delay:.3s}.d4{transition-delay:.4s}


.process-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; margin-top: 64px; }
.process-step { background: var(--bg); padding: 52px 44px; transition: background .3s; }
.process-step:hover { background: rgba(255,95,10,.03); }
.step-n { font-family: 'DM Sans', sans-serif; font-size: 4rem; font-weight: 700; color: var(--orange); line-height: 1; margin-bottom: 28px; display: block; letter-spacing: -.04em; }
.process-step h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 12px; }
.process-step p { color: var(--muted2); font-size: .9rem; line-height: 1.7; }


.work-section { padding: 50px 0; overflow: hidden; position: relative; z-index: 1; }
.work-header { max-width: 1200px; margin: 0 auto 48px; padding: 0 56px; }
.work-tracks { display: flex; flex-direction: column; gap: 16px; }
.wtrack { display: flex; gap: 20px; width: max-content; }
.wtrack.fwd { animation: wfwd 28s linear infinite; }
.wtrack.rev { animation: wrev 28s linear infinite; }
@keyframes wfwd { from{transform:translateX(0)}to{transform:translateX(-50%)} }
@keyframes wrev { from{transform:translateX(-50%)}to{transform:translateX(0)} }
.wcard { width: 340px; height: 200px; border-radius: 16px; border: 1px solid var(--border2); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.wcard span { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-style: italic; color: var(--white); opacity: .3; }


.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.bene-list { margin-top: 48px; display: flex; flex-direction: column; }
.bene { padding: 28px 0; border-bottom: 1px solid var(--border2); display: flex; gap: 20px; align-items: flex-start; transition: padding-left .3s; }
.bene:hover { padding-left: 8px; }
.bene-icon { width: 42px; height: 42px; min-width: 42px; border-radius: 10px; background: var(--orange-soft); color: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.bene h4 { font-size: .95rem; font-weight: 600; margin-bottom: 6px; }
.bene p { color: var(--muted2); font-size: .88rem; line-height: 1.65; }
.bene-right { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 120px; }
.t2-card { background: var(--card); border: 1px solid var(--border2); border-radius: 16px; padding: 32px; }
.t2-q { font-size: .95rem; line-height: 1.75; font-style: italic; color: var(--muted2); margin-bottom: 16px; }
.t2-a strong { color: var(--white); display: block; font-size: .9rem; margin-bottom: 2px; }
.t2-a span { font-size: .82rem; color: var(--muted); }


.feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 64px; }
.feat-card { background: var(--card); border: 1px solid var(--border2); border-radius: 16px; padding: 36px 32px; transition: border-color .3s, transform .3s; }
.feat-card:hover { border-color: rgba(255,95,10,.3); transform: translateY(-4px); }
.feat-icon { font-size: 1.4rem; margin-bottom: 20px; }
.feat-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 10px; }
.feat-card p { color: var(--muted2); font-size: .88rem; line-height: 1.65; }


.sol-tags { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 48px; }
.sol-tag { padding: 14px 28px; border: 1px solid var(--border); border-radius: 999px; font-family: 'Playfair Display', serif; font-size: 1.05rem; font-style: italic; color: var(--muted2); cursor: default; transition: border-color .3s, color .3s; }
.sol-tag:hover { border-color: var(--orange); color: var(--white); }


.pricing-wrap { padding: 80px 56px; max-width: 780px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.pricing-wrap h2 { margin-bottom: 16px; }
.pricing-wrap .psub { color: var(--muted2); margin-bottom: 64px; }
.price-card { background: var(--card); border: 1px solid var(--border); border-radius: 24px; padding: 60px 52px; text-align: left; position: relative; overflow: hidden; display: flex; flex-direction: column; }
.price-card::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 55%; height: 1px; background: linear-gradient(90deg, transparent, var(--orange), transparent); }
.spots { display: inline-flex; align-items: center; gap: 8px; background: rgba(74,222,128,.08); border: 1px solid rgba(74,222,128,.2); color: #4ade80; padding: 6px 16px; border-radius: 999px; font-size: .8rem; margin-bottom: 32px; }
.price-num { font-family: 'Playfair Display', serif; font-size: 5.5rem; line-height: 1; letter-spacing: -.04em; margin-bottom: 4px; }
.price-num sup { font-size: 2rem; vertical-align: top; margin-top: 18px; font-family: 'DM Sans', sans-serif; font-weight: 300; }
.price-num sub { font-size: 1.5rem; vertical-align: bottom; font-family: 'DM Sans', sans-serif; font-weight: 300; color: var(--muted2); }
.price-note { color: var(--muted); font-size: .88rem; margin-bottom: 36px; }
.addon { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; background: rgba(255,255,255,.03); border: 1px solid var(--border2); border-radius: 12px; margin-bottom: 36px; font-size: .88rem; color: var(--muted2); }
.addon-tag { background: rgba(255,95,10,.12); color: var(--orange); padding: 3px 10px; border-radius: 999px; font-size: .78rem; font-weight: 600; }
.feats { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 40px; }
.feats li { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: var(--muted2); }
.feats li::before { content: '✦'; color: var(--orange); font-size: .7rem; flex-shrink: 0; }
.pbtns { display: flex; flex-direction: column; gap: 12px; margin-top: auto; }
.pbtn-fill { background: var(--orange); color: #000; border: none; padding: 15px; border-radius: 999px; font-family: 'DM Sans', sans-serif; font-size: .95rem; font-weight: 700; cursor: pointer; transition: transform .2s, box-shadow .2s; width: 100%; }
.pbtn-fill:hover { transform: translateY(-2px); box-shadow: 0 12px 40px var(--orange-glow); }
.pbtn-ghost { background: transparent; color: var(--white); border: 1px solid var(--border); padding: 15px; border-radius: 999px; font-family: 'DM Sans', sans-serif; font-size: .95rem; cursor: pointer; transition: border-color .2s; width: 100%; }
.pbtn-ghost:hover { border-color: rgba(255,255,255,.3); }


.faq-wrap { padding: 80px 56px; max-width: 760px; margin: 0 auto; position: relative; z-index: 1; }
.faq-wrap h2 { text-align: center; margin-bottom: 64px; }
.faq-item { border-bottom: 1px solid var(--border2); }
.faq-btn { width: 100%; background: none; border: none; color: var(--white); font-family: 'DM Sans', sans-serif; font-size: .95rem; font-weight: 500; padding: 22px 0; display: flex; justify-content: space-between; align-items: center; cursor: pointer; text-align: left; transition: color .2s; gap: 16px; }
.faq-btn:hover { color: var(--orange); }
.faq-ico { font-size: 1.2rem; color: var(--muted); transition: transform .3s, color .3s; flex-shrink: 0; }
.faq-body { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s; color: var(--muted2); font-size: .9rem; line-height: 1.75; padding-bottom: 0; }
.faq-item.open .faq-body { max-height: 220px; padding-bottom: 22px; }
.faq-item.open .faq-ico { transform: rotate(45deg); color: var(--orange); }


.contact-section { max-width: 640px; margin: 70px auto; padding: 0 24px; text-align: center; position: relative; z-index: 1; }
.contact-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,95,10,0.1); border: 1px solid rgba(255,95,10,0.2); color: #ff5f0a; padding: 6px 16px; border-radius: 100px; font-size: 12px; margin-bottom: 24px; }
.badge-dot { width: 6px; height: 6px; background-color: #ff5f0a; border-radius: 50%; box-shadow: 0 0 10px #ff5f0a; }
.contact-section h2 { font-size: 3rem; font-weight: 400; margin-bottom: 15px; }
.contact-section h2 span { font-family: 'Playfair Display', serif; font-style: italic; color: #ff5f0a; }
.contact-section > p { color: #888; margin-bottom: 40px; }
.contact-form { display: flex; flex-direction: column; gap: 15px; }
.input-group { display: flex; gap: 15px; }
.contact-form input, .contact-form textarea { width: 100%; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); padding: 18px; border-radius: 16px; color: white; font-family: 'DM Sans', sans-serif; font-size: 15px; outline: none; transition: border 0.3s ease; }
.contact-form input:focus, .contact-form textarea:focus { border-color: #ff5f0a; }
.contact-form button { background-color: #ff5f0a; color: white; padding: 18px; border-radius: 100px; border: none; font-size: 16px; font-weight: 600; cursor: pointer; margin-top: 10px; transition: opacity 0.3s ease, transform 0.2s ease; }
.contact-form button:hover { opacity: 0.9; transform: translateY(-2px); }


.cta-section { padding: 100px 40px; text-align: center; position: relative; overflow: hidden; z-index: 1; }
.cta-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 700px; height: 500px; background: radial-gradient(ellipse, rgba(255,95,10,.1), transparent 65%); filter: blur(60px); pointer-events: none; border-radius: 50%; }
.cta-section h2 { font-size: clamp(3rem,7vw,6.5rem); margin-bottom: 20px; }
.cta-section p { color: var(--muted2); margin-bottom: 48px; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; }


.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  padding: 14px 22px 14px 16px;
  border-radius: 999px;
  font-family: 'DM Sans', sans-serif;
  font-size: .92rem;
  font-weight: 600;
  box-shadow: 0 8px 32px rgba(37,211,102,.45);
  transition: transform .25s, box-shadow .25s, padding .25s;
  animation: wa-entry .6s .8s both;
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 40px rgba(37,211,102,.6);
}
.wa-icon { width: 26px; height: 26px; flex-shrink: 0; }
.wa-label { white-space: nowrap; }
.wa-ping {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 14px;
  height: 14px;
  background: #ff5f0a;
  border-radius: 50%;
  border: 2px solid #0a0a0b;
  animation: wa-blink 2s infinite;
}
@keyframes wa-entry { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
@keyframes wa-blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(1.3)} }


footer { border-top: 1px solid var(--border2); padding: 36px 56px; display: flex; justify-content: space-between; align-items: center; position: relative; z-index: 1; }
.flogo { font-family: 'Playfair Display', serif; font-size: 1.1rem; }
.flogo i { color: var(--orange); font-style: italic; }
footer p { color: var(--muted); font-size: .82rem; }
.flinks { display: flex; gap: 24px; }
.flinks a { color: var(--muted); text-decoration: none; font-size: .82rem; transition: color .2s; }
.flinks a:hover { color: var(--white); }


@media(max-width:1000px) {
  nav{padding:16px 24px}.nav-links{display:none}
  .section,.pricing-wrap,.faq-wrap{padding-left:24px;padding-right:24px}
  .work-header{padding:0 24px}
  .process-grid,.benefits-grid,.feat-grid{grid-template-columns:1fr}
  .bene-right{position:static}
  .feats{grid-template-columns:1fr}
  footer{flex-direction:column;gap:16px;text-align:center;padding:28px 24px}
  .contact-section{padding:0 24px}
  .pricing-wrap [style*="grid-template-columns:1fr 1fr 1fr"]{grid-template-columns:1fr !important}
}
@media(max-width:600px) {
  .hero{background-size: 140%; background-position: 72% center;}
  .hero-actions,.cta-actions{flex-direction:column;align-items:center}
  .input-group{flex-direction:column}
  .contact-section h2{font-size:2.2rem}
}





/* Fixes de responsividade e FAQ */
.faq-body{
  will-change: max-height;
  overflow: hidden;
  word-break: break-word;
}
.faq-item.open .faq-body{
  max-height: 1000px;
}

@media (max-width: 768px){
  nav{padding:14px 16px;}
  .hero{min-height:auto;padding:110px 16px 72px;}
  .hero h1{font-size:2rem;line-height:1.18;}
  .hero-sub{font-size:.95rem;line-height:1.6;max-width:100%;}
  .section,.pricing-wrap,.faq-wrap,.contact-section,.work-header{padding-left:16px !important;padding-right:16px !important;}
  .faq-wrap{padding-top:56px;padding-bottom:56px;}
  .faq-wrap h2{margin-bottom:36px;}
  .faq-btn{
    font-size:.95rem;
    line-height:1.45;
    align-items:flex-start;
    padding:18px 0;
  }
  .faq-ico{margin-top:2px;}
  .faq-body{
    font-size:.95rem;
    line-height:1.7;
    padding-right:24px;
  }
  footer{padding-left:16px;padding-right:16px;}
}

@media (max-width: 480px){
  .hero h1{font-size:1.75rem;}
  .badge{font-size:.72rem;padding:8px 12px;}
  .faq-body{padding-right:12px;}
}


/* ===== Responsive polish: mobile + desktop sem alterar o visual ===== */
img { max-width: 100%; height: auto; display: block; }
button, input, textarea { font: inherit; }

@media (max-width: 1200px) {
  .hero { background-size: 185%; }
  .price-card { padding: 44px 34px; }
  .price-num { font-size: 4.5rem; }
}

@media (max-width: 1000px) {
  .hero {
    min-height: min(100svh, 880px);
    padding-top: 132px;
    padding-bottom: 84px;
    background-size: 210%;
    background-position: 70% center;
  }

  .logo img {
    height: 108px !important;
    margin-top: -30px !important;
    margin-bottom: -30px !important;
  }

  .process-step,
  .feat-card,
  .price-card { padding: 34px 26px; }

  .pricing-wrap .psub,
  .faq-wrap h2,
  .section-sub,
  .hero-sub,
  .cta-section p {
    max-width: 100%;
  }

  .sol-tags { justify-content: center; }
  .price-num { font-size: 4rem; }
  .cta-section { padding: 84px 24px; }
  .wa-float { bottom: 22px; right: 22px; }
}

@media (max-width: 768px) {
  html, body { overflow-x: hidden; }

  nav {
    padding: 14px 16px;
    min-height: 72px;
  }

  .logo img {
    height: 88px !important;
    margin-top: -18px !important;
    margin-bottom: -18px !important;
  }

  .hero {
    min-height: auto;
    padding: 108px 16px 72px;
    background-size: 265%;
    background-position: 74% center;
  }

  .glow-1 { width: 420px; height: 420px; top: -140px; right: -140px; }
  .glow-2 { width: 300px; height: 300px; left: -120px; bottom: -80px; }

  .badge {
    margin-bottom: 24px;
    text-align: center;
    line-height: 1.35;
  }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1.08;
    margin-bottom: 18px;
  }

  .hero-sub {
    font-size: .96rem;
    line-height: 1.65;
    margin-bottom: 28px;
  }

  .hero-actions,
  .cta-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn-fill,
  .cta-actions .btn-fill,
  .pbtn-fill,
  .pbtn-ghost,
  .contact-form button {
    width: 100%;
  }

  .marquee-bar { padding: 12px 0; }
  .marquee-inner { gap: 36px; }

  .section,
  .pricing-wrap,
  .faq-wrap,
  .contact-section,
  .work-header,
  .cta-section,
  footer {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .section,
  .pricing-wrap,
  .faq-wrap { padding-top: 56px; padding-bottom: 56px; }

  h2,
  .contact-section h2,
  .cta-section h2 {
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 1.12;
  }

  .section-sub,
  .pricing-wrap .psub,
  .contact-section > p,
  .cta-section p,
  .faq-body,
  .feat-card p,
  .process-step p,
  .price-note,
  .feats li {
    font-size: .95rem;
    line-height: 1.7;
  }

  .process-grid,
  .feat-grid,
  .benefits-grid,
  .pricing-wrap [style*="grid-template-columns:1fr 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  .process-grid { margin-top: 40px; }
  .feat-grid { margin-top: 40px; }

  .process-step,
  .feat-card,
  .price-card { padding: 28px 20px; border-radius: 18px; }

  .step-n { font-size: 3rem; margin-bottom: 18px; }

  .spots {
    font-size: .72rem;
    padding: 6px 12px;
    margin-bottom: 22px;
  }

  .price-num {
    font-size: clamp(2.6rem, 12vw, 3.6rem);
    flex-wrap: wrap;
    row-gap: 6px;
  }

  .price-num sup {
    font-size: 1.1rem;
    margin-top: 10px;
  }

  .feats {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 28px;
  }

  .sol-tags {
    gap: 10px;
    margin-top: 30px;
  }

  .sol-tag {
    width: 100%;
    text-align: center;
    padding: 12px 16px;
    font-size: .98rem;
  }

  .faq-wrap h2 { margin-bottom: 32px; }

  .faq-btn {
    padding: 18px 0;
    font-size: .95rem;
    line-height: 1.45;
    align-items: flex-start;
  }

  .faq-body {
    padding-right: 8px;
    word-break: break-word;
  }

  .contact-section {
    margin: 56px auto;
  }

  .input-group { flex-direction: column; }

  .contact-form input,
  .contact-form textarea,
  .contact-form button {
    padding: 16px;
    border-radius: 14px;
  }

  .cta-section { padding-top: 72px; padding-bottom: 84px; }

  .wa-float {
    right: 16px;
    bottom: 16px;
    padding: 12px 16px;
    gap: 8px;
    font-size: .88rem;
    max-width: calc(100vw - 32px);
  }

  .wa-label {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  footer {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 100px;
    padding-bottom: 64px;
    background-size: 320%;
    background-position: 76% center;
  }

  .badge {
    font-size: .72rem;
    padding: 8px 12px;
  }

  .hero h1 { font-size: 1.8rem; }
  .hero-sub { font-size: .92rem; }

  .process-step,
  .feat-card,
  .price-card { padding: 24px 18px; }

  .price-num { font-size: 2.4rem; }

  .price-num span[style*="font-size:1.1rem"] {
    font-size: .9rem !important;
    line-height: 1.2;
  }

  .price-note,
  .feats li,
  .faq-body,
  .contact-form input,
  .contact-form textarea {
    font-size: .9rem;
  }

  .wa-float {
    width: 54px;
    height: 54px;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
  }

  .wa-label { display: none; }
}
