/* ===================================================
   MEU SITE EXPRESS - style.css
   Azul escuro + Verde vibrante + Branco
   Mobile-first
   =================================================== */

/* === TOKENS === */
:root {
  --navy:          #0A2540;
  --navy-mid:      #0D2E4D;
  --navy-light:    #1A3A5C;
  --green:         #00C853;
  --green-dark:    #00A844;
  --green-glow:    rgba(0,200,83,.25);
  --white:         #FFFFFF;
  --surface:       #F4F7FA;
  --surface-2:     #EBF0F6;
  --text:          #1A1A2E;
  --text-mid:      #4A5568;
  --text-light:    #718096;
  --border:        #D8E2EE;

  --font-display:  'Raleway', sans-serif;
  --font-body:     'Inter', sans-serif;

  --r-sm:   6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  32px;

  --shadow-sm:  0 1px 4px rgba(10,37,64,.08);
  --shadow-md:  0 4px 20px rgba(10,37,64,.12);
  --shadow-lg:  0 12px 48px rgba(10,37,64,.18);
  --shadow-green: 0 4px 24px rgba(0,200,83,.35);

  --t: .22s ease;
  --container: 1160px;
}

/* === RESET === */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{font-family:var(--font-body);font-size:1rem;line-height:1.65;color:var(--text);background:var(--white);overflow-x:hidden}
img{display:block;max-width:100%;height:auto}
a{color:inherit;text-decoration:none}
ul{list-style:none}
button{cursor:pointer;border:none;background:none;font:inherit}
:focus-visible{outline:2px solid var(--green);outline-offset:3px;border-radius:4px}

/* === CONTAINER === */
.container{width:100%;max-width:var(--container);margin:0 auto;padding:0 1.25rem}

/* === TYPOGRAPHY HELPERS === */
.eyebrow{
  display:block;
  font-family:var(--font-display);
  font-size:.72rem;font-weight:700;
  letter-spacing:.14em;text-transform:uppercase;
  color:var(--green);margin-bottom:.5rem;
}
.eyebrow--center{text-align:center}
.eyebrow--light{color:rgba(255,255,255,.6)}

.section-heading{
  font-family:var(--font-display);
  font-size:clamp(1.6rem,4vw,2.4rem);
  font-weight:900;line-height:1.15;
  color:var(--text);margin-bottom:1rem;
}
.section-heading--center{text-align:center}
.section-heading--light{color:var(--white)}

.section-sub{font-size:1.05rem;color:var(--text-mid);max-width:580px;margin-bottom:2rem}
.section-sub--center{text-align:center;margin-left:auto;margin-right:auto}

/* === BUTTONS === */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.4rem;
  font-family:var(--font-display);font-weight:700;font-size:.9rem;
  letter-spacing:.02em;padding:.75rem 1.5rem;
  border-radius:var(--r-sm);
  transition:background var(--t),color var(--t),transform var(--t),box-shadow var(--t);
  white-space:nowrap;text-align:center;
}
.btn:active{transform:scale(.97)}

.btn--accent{
  background:var(--green);color:var(--navy);
  box-shadow:var(--shadow-green);
}
.btn--accent:hover{
  background:var(--green-dark);
  box-shadow:0 6px 32px rgba(0,200,83,.45);
  transform:translateY(-1px);
}

.btn--outline{
  background:transparent;color:var(--navy);
  border:2px solid var(--navy);
}
.btn--outline:hover{background:var(--navy);color:var(--white)}

.btn--lg{padding:1rem 2rem;font-size:1rem}
.btn--full{width:100%;justify-content:center}

.btn--pulse{
  animation:pulse-btn 2.5s ease-in-out infinite;
}
@keyframes pulse-btn{
  0%,100%{box-shadow:var(--shadow-green)}
  50%{box-shadow:0 0 0 10px rgba(0,200,83,0)}
}

/* ===================================================
   HEADER
   =================================================== */
.header{
  position:sticky;top:0;z-index:100;
  background:var(--white);
  border-bottom:1px solid var(--border);
  box-shadow:var(--shadow-sm);
}
.header__inner{
  display:flex;align-items:center;gap:1.5rem;height:66px;
}

/* Logo */
.header__logo{display:flex;align-items:baseline;gap:.15rem;flex-shrink:0}
.logo__site{
  font-family:var(--font-display);font-weight:900;font-size:1.5rem;
  color:var(--navy);letter-spacing:.06em;
}
.logo__express{
  font-family:var(--font-display);font-weight:700;font-size:1rem;
  color:var(--green);letter-spacing:.06em;text-transform:uppercase;
  border:2px solid var(--green);
  padding:.1rem .45rem;border-radius:4px;
  margin-left:.3rem;
}

.header__nav{display:none;align-items:center;gap:1.5rem;margin-left:auto}
.header__nav-link{
  font-family:var(--font-display);font-size:.85rem;font-weight:600;
  color:var(--text);transition:color var(--t);
}
.header__nav-link:hover{color:var(--green)}

.header__menu-btn{
  margin-left:auto;display:flex;flex-direction:column;gap:5px;padding:6px;
}
.header__menu-btn span{
  display:block;width:24px;height:2px;
  background:var(--navy);border-radius:2px;transition:var(--t);
}

.header__mobile-nav{
  display:none;flex-direction:column;gap:1rem;
  padding:1.25rem;background:var(--white);
  border-top:1px solid var(--border);
}
.header__mobile-nav.is-open{display:flex}
.header__mobile-nav a{
  font-family:var(--font-display);font-weight:600;
  color:var(--text);padding:.5rem 0;
  border-bottom:1px solid var(--border);
}
.header__mobile-nav .btn{margin-top:.5rem}

@media(min-width:768px){
  .header__nav{display:flex}
  .header__menu-btn{display:none}
}

/* ===================================================
   HERO
   =================================================== */
.hero{
  background:var(--navy);
  padding:4rem 0 0;
  overflow:hidden;
}

.hero__inner{
  display:flex;flex-direction:column;
  gap:3rem;padding-bottom:4rem;
}

/* Badge */
.hero__badge{
  display:inline-flex;align-items:center;gap:.5rem;
  background:rgba(0,200,83,.12);
  border:1px solid rgba(0,200,83,.3);
  border-radius:999px;
  padding:.35rem 1rem;
  font-family:var(--font-display);font-size:.78rem;font-weight:700;
  color:var(--green);letter-spacing:.04em;
  margin-bottom:1.25rem;width:fit-content;
}
.badge__dot{
  width:7px;height:7px;border-radius:50%;
  background:var(--green);
  animation:blink 1.8s ease-in-out infinite;flex-shrink:0;
}
@keyframes blink{0%,100%{opacity:1}50%{opacity:.3}}

.hero__heading{
  font-family:var(--font-display);
  font-size:clamp(2rem,6vw,3.5rem);
  font-weight:900;line-height:1.08;
  color:var(--white);margin-bottom:1.25rem;
}
.hero__heading em{
  font-style:normal;color:var(--green);
}

.hero__sub{
  font-size:1.05rem;color:rgba(255,255,255,.75);
  line-height:1.7;max-width:520px;margin-bottom:2rem;
}
.hero__sub strong{color:var(--white)}

/* Selos */
.hero__seals{
  display:flex;flex-wrap:wrap;gap:1rem;margin-bottom:2rem;
}
.seal{
  display:flex;align-items:center;gap:.6rem;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.1);
  border-radius:var(--r-sm);
  padding:.6rem 1rem;flex:1;min-width:140px;
}
.seal__icon{font-size:1.2rem}
.seal strong{
  display:block;font-family:var(--font-display);font-size:.9rem;
  font-weight:800;color:var(--white);line-height:1.1;
}
.seal span{font-size:.75rem;color:rgba(255,255,255,.5)}

.hero__actions{
  display:flex;flex-direction:column;gap:.75rem;margin-bottom:.75rem;
}
.hero__actions .btn--outline{
  color:rgba(255,255,255,.85);
  border-color:rgba(255,255,255,.3);
}
.hero__actions .btn--outline:hover{
  background:rgba(255,255,255,.1);color:var(--white);
  border-color:rgba(255,255,255,.6);
}
.hero__microcopy{
  font-size:.78rem;color:rgba(255,255,255,.4);
}

/* Result card */
.hero__result-card{
  background:var(--white);border-radius:var(--r-lg);
  padding:1.5rem;box-shadow:var(--shadow-lg);
  align-self:center;width:100%;max-width:400px;
}
.result-card__header{margin-bottom:1.25rem}
.result-card__tag{
  font-family:var(--font-display);font-size:.72rem;font-weight:700;
  letter-spacing:.1em;text-transform:uppercase;
  color:var(--text-light);
}

/* Mini chart */
.result-card__chart{
  display:flex;align-items:flex-end;gap:1rem;
  margin-bottom:1.25rem;height:120px;
}
.chart__bar{
  display:flex;flex-direction:column;align-items:center;
  gap:.4rem;flex:1;
}
.chart__value{
  font-family:var(--font-display);font-size:1rem;font-weight:800;
  color:var(--navy);
}
.chart__fill{border-radius:6px 6px 0 0;width:100%}
.chart__fill--before{background:var(--surface-2);height:38px}
.chart__fill--after{background:var(--green);height:100px}
.chart__label{
  font-size:.72rem;color:var(--text-light);font-weight:600;
}
.chart__arrow{
  font-size:1.5rem;color:var(--green);font-weight:700;
  padding-bottom:2.5rem;flex-shrink:0;
}

.result-card__caption{
  font-size:.9rem;color:var(--text-mid);
  line-height:1.5;margin-bottom:1rem;text-align:center;
}
.result-card__caption strong{color:var(--green)}

.result-card__footer{
  border-top:1px solid var(--border);
  padding-top:.75rem;display:flex;flex-direction:column;gap:.3rem;
  align-items:center;
}
.result-stars{color:#F5A623;font-size:.9rem;letter-spacing:2px}
.result-card__footer span{
  font-size:.8rem;color:var(--text-light);font-style:italic;text-align:center;
}

@media(min-width:900px){
  .hero__inner{flex-direction:row;align-items:center;padding-bottom:5rem}
  .hero__content{flex:1}
  .hero__result-card{flex:0 0 360px}
  .hero__actions{flex-direction:row}
}

/* ===================================================
   PROBLEMA
   =================================================== */
.problem{
  background:var(--surface);padding:5rem 0;
}
.problem__grid{
  display:grid;grid-template-columns:1fr;gap:1rem;
  margin-top:2.5rem;
}
.problem__item{
  background:var(--white);border-radius:var(--r-md);
  padding:1.25rem 1.5rem;
  display:flex;align-items:flex-start;gap:1rem;
  border:1px solid var(--border);
  transition:box-shadow var(--t),transform var(--t);
}
.problem__item:hover{box-shadow:var(--shadow-md);transform:translateY(-2px)}
.problem__icon{font-size:1.5rem;flex-shrink:0;margin-top:.1rem}
.problem__item p{font-size:.95rem;color:var(--text-mid);line-height:1.6}

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

/* ===================================================
   COMO FUNCIONA
   =================================================== */
.how{background:var(--navy);padding:5rem 0}

.how__steps{
  display:flex;flex-direction:column;gap:0;
  margin-top:3rem;
}
.how__step{
  display:flex;gap:1.5rem;align-items:flex-start;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--r-md);padding:1.5rem;
}
.how__step-num{
  font-family:var(--font-display);font-size:2.5rem;font-weight:900;
  color:var(--green);line-height:1;flex-shrink:0;width:48px;
  opacity:.9;
}
.how__step-body h3{
  font-family:var(--font-display);font-size:1.05rem;font-weight:800;
  color:var(--white);margin-bottom:.4rem;
}
.how__step-body p{font-size:.9rem;color:rgba(255,255,255,.65);line-height:1.65}

.how__connector{
  width:2px;height:32px;background:rgba(0,200,83,.3);
  margin-left:calc(1.5rem + 24px);
}

@media(min-width:900px){
  .how__steps{flex-direction:row;align-items:stretch;gap:0}
  .how__connector{width:32px;height:2px;align-self:center;margin:0}
  .how__step{flex:1;flex-direction:column;gap:1rem}
  .how__step-num{font-size:3rem;width:auto}
}

/* ===================================================
   PACOTES / PRICING
   =================================================== */
.pricing{padding:5rem 0;background:var(--white)}

.pricing__grid{
  display:grid;grid-template-columns:1fr;gap:1.5rem;
  margin-top:2.5rem;
}

.plan{
  background:var(--surface);border-radius:var(--r-lg);
  border:2px solid var(--border);
  padding:2rem;position:relative;
  transition:transform var(--t),box-shadow var(--t);
}
.plan:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}

.plan--featured{
  background:var(--navy);border-color:var(--green);
  box-shadow:0 0 0 1px var(--green), var(--shadow-lg);
}

.plan__badge{
  position:absolute;top:-14px;left:50%;transform:translateX(-50%);
  background:var(--green);color:var(--navy);
  font-family:var(--font-display);font-size:.7rem;font-weight:800;
  letter-spacing:.08em;text-transform:uppercase;
  padding:.3rem .9rem;border-radius:999px;
  white-space:nowrap;
}

.plan__header{text-align:center;margin-bottom:1.75rem}
.plan__name{
  font-family:var(--font-display);font-size:.8rem;font-weight:700;
  letter-spacing:.12em;text-transform:uppercase;
  color:var(--text-light);margin-bottom:.75rem;
}
.plan--featured .plan__name{color:rgba(255,255,255,.55)}

.plan__price{
  display:flex;align-items:flex-start;justify-content:center;
  gap:.2rem;line-height:1;margin-bottom:.3rem;
}
.plan__currency{
  font-family:var(--font-display);font-size:1.1rem;font-weight:700;
  color:var(--navy);padding-top:.4rem;
}
.plan--featured .plan__currency{color:var(--white)}

.plan__value{
  font-family:var(--font-display);font-size:3rem;font-weight:900;
  color:var(--navy);
}
.plan--featured .plan__value{color:var(--white)}

.plan__period{font-size:.8rem;color:var(--text-light)}
.plan--featured .plan__period{color:rgba(255,255,255,.5)}

.plan__features{
  display:flex;flex-direction:column;gap:.6rem;margin-bottom:1.5rem;
}
.plan__feature{
  display:flex;align-items:flex-start;gap:.6rem;
  font-size:.88rem;line-height:1.45;
}
.plan__feature::before{flex-shrink:0;font-weight:700;font-size:.9rem}
.plan__feature--yes{color:var(--text-mid)}
.plan__feature--yes::before{content:'✓';color:var(--green)}
.plan__feature--no{color:var(--text-light);text-decoration:line-through;opacity:.5}
.plan__feature--no::before{content:'✗';color:var(--text-light)}
.plan--featured .plan__feature--yes{color:rgba(255,255,255,.85)}
.plan--featured .plan__feature--no{color:rgba(255,255,255,.3)}

.plan__note{
  font-size:.78rem;color:var(--text-light);font-style:italic;
  margin-bottom:1.25rem;text-align:center;
}
.plan--featured .plan__note{color:rgba(255,255,255,.4)}

.plan--featured .btn--outline{
  color:var(--white);border-color:rgba(255,255,255,.4);
}
.plan--featured .btn--outline:hover{
  background:rgba(255,255,255,.1);
}

.pricing__note{
  text-align:center;font-size:.9rem;color:var(--text-mid);
  margin-top:2rem;padding:1rem;
  background:var(--surface);border-radius:var(--r-sm);
  border:1px solid var(--border);
}

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

/* ===================================================
   CASES
   =================================================== */
.cases{padding:5rem 0;background:var(--surface)}

.cases__grid{
  display:grid;grid-template-columns:1fr;gap:1.25rem;
  margin-top:2.5rem;
}

.case-card{
  background:var(--white);border-radius:var(--r-lg);
  padding:1.75rem;border:1px solid var(--border);
  transition:transform var(--t),box-shadow var(--t);
  position:relative;
}
.case-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-md)}

.case-card--featured{
  background:var(--navy);border-color:var(--green);
}

.case-card__tag{
  position:absolute;top:1rem;right:1rem;
  background:var(--green);color:var(--navy);
  font-family:var(--font-display);font-size:.65rem;font-weight:800;
  letter-spacing:.08em;text-transform:uppercase;
  padding:.2rem .6rem;border-radius:4px;
}

.case-card__result{
  display:flex;align-items:center;gap:.75rem;
  margin-bottom:.4rem;
}
.case-card__before{
  font-family:var(--font-display);font-size:1.1rem;font-weight:700;
  color:var(--text-light);
}
.case-card--featured .case-card__before{color:rgba(255,255,255,.5)}

.case-card__arrow{font-size:1.2rem;color:var(--green);font-weight:700}

.case-card__after{
  font-family:var(--font-display);font-size:1.5rem;font-weight:900;
  color:var(--green);
}

.case-card__time{
  font-size:.78rem;color:var(--text-light);margin-bottom:1rem;
}
.case-card--featured .case-card__time{color:rgba(255,255,255,.45)}

.case-card__niche{
  font-family:var(--font-display);font-size:1rem;font-weight:800;
  color:var(--navy);margin-bottom:.5rem;
}
.case-card--featured .case-card__niche{color:var(--white)}

.case-card__desc{
  font-size:.88rem;color:var(--text-mid);
  line-height:1.6;margin-bottom:1rem;
}
.case-card--featured .case-card__desc{color:rgba(255,255,255,.65)}

.case-card__stars{color:#F5A623;font-size:.9rem;letter-spacing:2px}

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

/* ===================================================
   DIFERENCIAIS
   =================================================== */
.diffs{background:var(--navy);padding:5rem 0}

.diffs__grid{
  display:grid;grid-template-columns:1fr;gap:1rem;
  margin-top:2.5rem;
}
.diff{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--r-md);padding:1.5rem;
  transition:background var(--t),transform var(--t);
}
.diff:hover{background:rgba(255,255,255,.09);transform:translateY(-2px)}
.diff__icon{font-size:1.75rem;margin-bottom:.75rem}
.diff h3{
  font-family:var(--font-display);font-size:1rem;font-weight:800;
  color:var(--white);margin-bottom:.4rem;
}
.diff p{font-size:.88rem;color:rgba(255,255,255,.6);line-height:1.65}

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

/* ===================================================
   DEPOIMENTOS
   =================================================== */
.testimonials{padding:5rem 0;background:var(--white)}

.testimonials__grid{
  display:grid;grid-template-columns:1fr;gap:1.25rem;
  margin-top:2.5rem;margin-bottom:3rem;
}

.tcard{
  background:var(--surface);border-radius:var(--r-md);
  padding:1.5rem;border:1px solid var(--border);
  display:flex;flex-direction:column;gap:1rem;
  transition:box-shadow var(--t),transform var(--t);
}
.tcard:hover{box-shadow:var(--shadow-md);transform:translateY(-2px)}

.tcard__stars{color:#F5A623;font-size:.9rem;letter-spacing:2px}

.tcard blockquote{
  font-size:.92rem;color:var(--text-mid);line-height:1.7;
  font-style:normal;flex:1;
}

.tcard footer{
  display:flex;align-items:center;gap:.75rem;
  border-top:1px solid var(--border);padding-top:1rem;
}
.tcard__avatar{
  width:40px;height:40px;border-radius:50%;
  background:var(--navy);color:var(--white);
  display:flex;align-items:center;justify-content:center;
  font-family:var(--font-display);font-weight:800;font-size:.8rem;
  flex-shrink:0;
}
.tcard footer strong{
  display:block;font-size:.9rem;
  font-family:var(--font-display);font-weight:700;color:var(--text);
}
.tcard footer span{font-size:.78rem;color:var(--text-light)}

/* Trust row */
.trust-row{
  display:grid;grid-template-columns:repeat(2,1fr);gap:1rem;
  background:var(--navy);border-radius:var(--r-lg);padding:2rem 1.5rem;
}
.trust-item{text-align:center}
.trust-item strong{
  display:block;
  font-family:var(--font-display);font-size:2rem;font-weight:900;
  color:var(--green);line-height:1;margin-bottom:.3rem;
}
.trust-item span{font-size:.8rem;color:rgba(255,255,255,.6)}

@media(min-width:768px){
  .testimonials__grid{grid-template-columns:repeat(3,1fr)}
  .trust-row{grid-template-columns:repeat(4,1fr)}
}

/* ===================================================
   FAQ
   =================================================== */
.faq{padding:5rem 0;background:var(--surface)}
.faq__inner{max-width:760px}

.faq__list{display:flex;flex-direction:column;gap:.5rem;margin-top:2rem}

.faq__item{
  background:var(--white);border-radius:var(--r-md);
  border:1px solid var(--border);overflow:hidden;
  transition:border-color var(--t);
}
.faq__item[open]{border-color:var(--green)}

.faq__q{
  list-style:none;
  display:flex;justify-content:space-between;align-items:center;gap:1rem;
  padding:1.1rem 1.25rem;
  font-family:var(--font-display);font-weight:700;font-size:.95rem;
  color:var(--navy);cursor:pointer;user-select:none;
  transition:background var(--t);
}
.faq__q:hover{background:var(--surface)}
.faq__q::-webkit-details-marker{display:none}
.faq__q::after{
  content:'+';font-size:1.4rem;font-weight:400;
  color:var(--green);flex-shrink:0;
  transition:transform var(--t);
}
.faq__item[open] .faq__q::after{transform:rotate(45deg)}

.faq__a{
  padding:0 1.25rem 1.1rem;
  font-size:.92rem;color:var(--text-mid);line-height:1.7;
  border-top:1px solid var(--border);
}

/* ===================================================
   CTA FINAL
   =================================================== */
.cta-final{
  background:var(--navy);padding:5rem 0;text-align:center;
  position:relative;overflow:hidden;
}
.cta-final::before{
  content:'';position:absolute;inset:0;
  background:radial-gradient(ellipse 60% 60% at 50% 100%,
    rgba(0,200,83,.18) 0%, transparent 70%);
  pointer-events:none;
}
.cta-final__inner{position:relative;display:flex;flex-direction:column;align-items:center;gap:1.5rem}

.cta-final__heading{
  font-family:var(--font-display);
  font-size:clamp(2rem,5vw,3.2rem);
  font-weight:900;line-height:1.1;color:var(--white);
}

.cta-final__sub{
  font-size:1.05rem;color:rgba(255,255,255,.7);
  max-width:520px;line-height:1.7;
}

.cta-final__microcopy{
  font-size:.78rem;color:rgba(255,255,255,.4);
}

/* ===================================================
   FOOTER
   =================================================== */
.footer{background:var(--text);color:var(--white);padding-top:3rem}

.footer__inner{
  display:grid;grid-template-columns:1fr;gap:2.5rem;
  padding-bottom:2.5rem;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.footer__logo{margin-bottom:.75rem}
.footer__brand p{
  font-size:.88rem;color:rgba(255,255,255,.5);line-height:1.6;
}

.footer__links h3,
.footer__contact h3{
  font-family:var(--font-display);font-size:.72rem;font-weight:700;
  letter-spacing:.12em;text-transform:uppercase;
  color:rgba(255,255,255,.35);margin-bottom:.75rem;
}

.footer__links ul{display:flex;flex-direction:column;gap:.4rem}
.footer__links a{
  font-size:.9rem;color:rgba(255,255,255,.65);
  transition:color var(--t);
}
.footer__links a:hover{color:var(--green)}

.footer__contact ul{display:flex;flex-direction:column;gap:.6rem}
.footer__contact li{
  display:flex;align-items:center;gap:.5rem;
  font-size:.88rem;color:rgba(255,255,255,.65);
}
.footer__contact svg{color:var(--green);flex-shrink:0}

.footer__bottom{padding:1.25rem 0}
.footer__bottom-inner{
  display:flex;flex-direction:column;gap:.5rem;
  align-items:center;text-align:center;
  font-size:.8rem;color:rgba(255,255,255,.3);
}
.footer__legal{display:flex;gap:1.5rem}
.footer__legal a{color:rgba(255,255,255,.3);transition:color var(--t)}
.footer__legal a:hover{color:var(--green)}

@media(min-width:600px){.footer__inner{grid-template-columns:repeat(2,1fr)}}
@media(min-width:900px){
  .footer__inner{grid-template-columns:2fr 1fr 1.5fr}
  .footer__bottom-inner{flex-direction:row;justify-content:space-between;text-align:left}
}

/* ===================================================
   WHATSAPP FLUTUANTE
   =================================================== */
.whatsapp-float{
  position:fixed;bottom:24px;right:24px;z-index:200;
  width:60px;height:60px;
  background:#25D366;color:var(--white);
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 4px 20px rgba(37,211,102,.45);
  transition:transform var(--t),box-shadow var(--t);
}
.whatsapp-float:hover{
  transform:scale(1.1) translateY(-2px);
  box-shadow:0 8px 30px rgba(37,211,102,.55);
}
.whatsapp-float::before{
  content:'';position:absolute;inset:-4px;border-radius:50%;
  border:2px solid rgba(37,211,102,.4);
  animation:pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring{
  0%{transform:scale(1);opacity:.8}
  80%,100%{transform:scale(1.4);opacity:0}
}

/* ===================================================
   REVEAL
   =================================================== */
.reveal{opacity:0;transform:translateY(20px);transition:opacity .5s ease,transform .5s ease}
.reveal.is-visible{opacity:1;transform:none}

@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{animation:none!important;transition:none!important}
  .reveal{opacity:1;transform:none}
}

/* ===================================================
   CONTATO
   =================================================== */
.contact {
  padding: 5rem 0;
  background: var(--white);
}

.contact__inner {
  max-width: 760px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.contact-form__group {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.contact-form__label {
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--text);
}

.contact-form__input {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text);
  background: var(--surface);
  transition: border-color var(--t), box-shadow var(--t);
  appearance: none;
  -webkit-appearance: none;
}
.contact-form__input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0,200,83,.12);
  background: var(--white);
}
.contact-form__input.is-error { border-color: #C0392B; }

.contact-form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6B6B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.contact-form__textarea { resize: vertical; min-height: 100px; }

.contact-form__btn { margin-top: .5rem; padding: 1rem; font-size: 1rem; }

.contact-form__microcopy {
  text-align: center;
  font-size: .75rem;
  color: var(--text-light);
}

/* Sucesso */
.contact-form__success {
  text-align: center;
  padding: 3rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.contact-success__icon {
  width: 64px; height: 64px;
  background: #E8F5E9; color: #2E7D32;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; font-weight: 700;
}
.contact-success__title {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 800;
  color: var(--navy);
}
.contact-success__text {
  font-size: .95rem; color: var(--text-mid); max-width: 420px;
}

@media(min-width: 600px) {
  .contact-form__row { grid-template-columns: 1fr 1fr; }
}

/* Case card — url e confidencial */
.case-card__url {
  display: inline-block;
  margin-top: .6rem;
  font-size: .75rem;
  font-family: var(--font-body);
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity var(--t);
}
.case-card__url:hover { opacity: .75; }

.case-card__confidential {
  display: inline-block;
  margin-top: .6rem;
  font-size: .75rem;
  color: var(--text-light);
  font-style: italic;
}

/* Pricing disclaimer */
.pricing__disclaimer {
  text-align: center;
  font-size: .75rem;
  color: var(--text-light);
  max-width: 620px;
  margin: .75rem auto 0;
  line-height: 1.6;
}

/* ===================================================
   INLINE CTAs
   =================================================== */
.inline-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.inline-cta--light {
  border-top-color: rgba(255,255,255,.12);
}

.inline-cta__note {
  font-size: .78rem;
  color: var(--text-light);
  text-align: center;
}

.inline-cta__note--light {
  color: rgba(255,255,255,.5);
}

/* ===================================================
   BANNER
   =================================================== */
.banner-section {
  background: var(--white);
  padding: 2rem 0;
}

.banner-link {
  display: block;
  cursor: pointer;
}

.banner-img {
  width: 100%;
  height: auto;
  border-radius: var(--r-lg);
  display: block;
  box-shadow: var(--shadow-md);
  transition: transform var(--t), box-shadow var(--t);
}

.banner-link:hover .banner-img {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 600px) {
  .banner-img { border-radius: var(--r-md); }
}
