/* ============================================================
   DUOPREV — Design System
   ============================================================ */

/* --- Variables --- */
:root {
  --blue:        #1B4F9C;
  --blue-dark:   #0D2D5E;
  --blue-mid:    #153F7E;
  --yellow:      #F5A800;
  --yellow-dark: #D99200;
  --white:       #FFFFFF;
  --gray-light:  #F4F6FA;
  --gray-mid:    #E2E8F0;
  --gray-text:   #64748B;
  --text:        #1A2340;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-pill: 999px;

  --shadow-sm:   0 2px 8px rgba(27,79,156,.10);
  --shadow-md:   0 4px 20px rgba(27,79,156,.15);
  --shadow-lg:   0 8px 40px rgba(27,79,156,.20);

  --transition:  .25s ease;

  --max-w: 1160px;
  --nav-h: 72px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Poppins', 'Inter', system-ui, sans-serif;
  line-height: 1.2;
  font-weight: 700;
  color: var(--text);
}
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
h4 { font-size: 1rem; font-weight: 600; }
p  { color: var(--gray-text); line-height: 1.75; }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 80px 0; }
.section--gray { background: var(--gray-light); }
.section--blue { background: var(--blue-dark); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: .95rem;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--yellow);
  color: var(--blue-dark);
}
.btn--primary:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn--outline {
  border: 2px solid var(--blue);
  color: var(--blue);
}
.btn--outline:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--white {
  background: var(--white);
  color: var(--blue-dark);
}
.btn--white:hover {
  background: var(--yellow);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn--lg { padding: 18px 36px; font-size: 1.05rem; }
.btn svg, .btn img { width: 20px; height: 20px; }

/* --- Tag / Label --- */
.tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  background: rgba(245,168,0,.15);
  color: var(--yellow-dark);
  margin-bottom: 12px;
}
.tag--white {
  background: rgba(255,255,255,.15);
  color: var(--white);
}

/* --- Section header --- */
.section-header {
  max-width: 600px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-header p { margin-top: 12px; font-size: 1.05rem; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: background var(--transition);
}
.nav.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(8px);
}
.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo img { height: 42px; width: auto; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  transition: color var(--transition);
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--yellow);
  transition: width var(--transition);
  border-radius: 2px;
}
.nav__links a:hover,
.nav__links a.active { color: var(--blue); }
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }

.nav__cta { display: flex; align-items: center; gap: 12px; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--white);
  padding: 24px;
  box-shadow: var(--shadow-md);
  flex-direction: column;
  gap: 0;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  padding: 14px 0;
  font-weight: 500;
  font-size: 1rem;
  border-bottom: 1px solid var(--gray-mid);
  color: var(--text);
}
.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile .btn { margin-top: 16px; justify-content: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding-top: calc(var(--nav-h) + 64px);
  padding-bottom: 80px;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, #2860B0 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(245,168,0,.08);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__content { color: var(--white); }
.hero__content h1 {
  color: var(--white);
  margin-bottom: 20px;
}
.hero__content h1 span { color: var(--yellow); }
.hero__content p {
  color: rgba(255,255,255,.85);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero__image {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.hero__photo-wrap {
  position: relative;
  width: 360px;
  height: 420px;
}
.hero__photo-bg {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  overflow: hidden;
}
.hero__photo-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero__photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,.5);
  font-size: .85rem;
  text-align: center;
  padding: 20px;
}
.hero__photo-placeholder svg { width: 64px; height: 64px; opacity: .4; }
.hero__badge {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--blue-dark);
  font-weight: 700;
  font-size: .85rem;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  box-shadow: var(--shadow-md);
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats {
  background: var(--white);
  padding: 40px 0;
  box-shadow: var(--shadow-sm);
}
.stats__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
  text-align: center;
}
.stats__item { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.stats__num {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue);
}
.stats__label { font-size: .85rem; color: var(--gray-text); font-weight: 500; }
.stats__divider {
  width: 1px;
  height: 48px;
  background: var(--gray-mid);
  margin: 0 32px;
}

/* ============================================================
   BENEFITS CARDS (home preview)
   ============================================================ */
.benefits-preview__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.benefit-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.benefit-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.benefit-card__icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: rgba(27,79,156,.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit-card__icon svg { width: 28px; height: 28px; color: var(--blue); }
.benefit-card h3 { font-size: 1rem; color: var(--text); margin: 0; }
.benefit-card p { font-size: .85rem; flex: 1; }
.benefit-card .link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}
.benefit-card .link:hover { gap: 8px; }
.benefits-preview__cta { text-align: center; margin-top: 40px; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative; }
.steps::before {
  content: '';
  position: absolute;
  top: 36px; left: calc(16.6% + 20px);
  right: calc(16.6% + 20px);
  height: 2px;
  background: linear-gradient(to right, var(--yellow), var(--blue));
  opacity: .3;
}
.step { text-align: center; padding: 0 16px; }
.step__num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--blue-dark);
  color: var(--yellow);
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}
.step h3 { margin-bottom: 8px; }
.step p { font-size: .9rem; }

/* ============================================================
   ABOUT / QUEM SOMOS
   ============================================================ */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about__image {
  position: relative;
}
.about__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--gray-light);
}
.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--gray-text);
  font-size: .85rem;
}
.about__photo-placeholder svg { width: 48px; height: 48px; opacity: .3; }
.about__accent {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: .12;
  z-index: -1;
}
.about__content { display: flex; flex-direction: column; gap: 20px; }
.about__content h2 { margin-bottom: 4px; }
.about__perks { display: flex; flex-direction: column; gap: 12px; margin: 8px 0; }
.perk {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.perk__icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  color: var(--yellow);
  margin-top: 2px;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  text-align: center;
  padding: 80px 0;
}
.cta-band h2 { color: var(--white); margin-bottom: 16px; }
.cta-band p  { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 540px; margin: 0 auto 36px; }
.cta-band__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-mid);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-card__stars { color: var(--yellow); font-size: 1rem; letter-spacing: 2px; }
.testimonial-card__text { font-style: italic; font-size: .95rem; }
.testimonial-card__author { display: flex; align-items: center; gap: 10px; margin-top: auto; }
.testimonial-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .85rem;
}
.testimonial-card__name { font-weight: 600; font-size: .9rem; }
.testimonial-card__role { font-size: .8rem; color: var(--gray-text); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--blue-dark);
  color: rgba(255,255,255,.8);
  padding: 60px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand .footer__logo { height: 40px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer__brand p { font-size: .9rem; max-width: 260px; }
.footer__col h4 { color: var(--white); margin-bottom: 16px; font-size: .9rem; letter-spacing: .04em; text-transform: uppercase; }
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul li a {
  font-size: .9rem;
  transition: color var(--transition);
}
.footer__col ul li a:hover { color: var(--yellow); }
.footer__contact { display: flex; flex-direction: column; gap: 10px; }
.footer__contact-item { display: flex; align-items: center; gap: 8px; font-size: .9rem; }
.footer__contact-item svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--yellow); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom p { font-size: .8rem; }
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.footer__social a:hover { background: var(--yellow); border-color: var(--yellow); }
.footer__social a svg { width: 16px; height: 16px; color: var(--white); }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  font-weight: 600;
  font-size: .9rem;
  transition: all var(--transition);
  animation: pulse-wpp 3s ease infinite;
}
.whatsapp-float:hover {
  background: #1DA851;
  transform: translateY(-3px);
  box-shadow: 0 6px 28px rgba(37,211,102,.5);
}
.whatsapp-float svg { width: 22px; height: 22px; flex-shrink: 0; }
@keyframes pulse-wpp {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,.7); }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding-top: calc(var(--nav-h) + 48px);
  padding-bottom: 48px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p  { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ============================================================
   BENEFICIOS PAGE
   ============================================================ */
.benefit-group { margin-bottom: 56px; }
.benefit-group__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--yellow);
}
.benefit-group__icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: var(--blue-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.benefit-group__icon svg { width: 24px; height: 24px; color: var(--yellow); }
.benefit-group__title { font-size: 1.3rem; color: var(--blue-dark); }

.accordion { display: flex; flex-direction: column; gap: 8px; }
.accordion-item {
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.accordion-item:hover { box-shadow: var(--shadow-sm); }
.accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: var(--white);
  font-weight: 600;
  font-size: .95rem;
  color: var(--text);
  gap: 12px;
  transition: background var(--transition);
}
.accordion-btn:hover { background: var(--gray-light); }
.accordion-btn.open { background: var(--blue-dark); color: var(--white); }
.accordion-btn svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.accordion-btn.open svg { transform: rotate(180deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.accordion-body.open { max-height: 300px; }
.accordion-body__inner {
  padding: 20px;
  border-top: 1px solid var(--gray-mid);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.accordion-body__inner p { font-size: .95rem; }
.accordion-body__inner .btn { align-self: flex-start; }

/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  gap: 12px;
  transition: background var(--transition);
}
.faq-btn:hover { background: var(--gray-light); }
.faq-btn.open { background: var(--blue-dark); color: var(--white); }
.faq-btn svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-btn.open svg { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-answer.open { max-height: 400px; }
.faq-answer__inner {
  padding: 20px 24px;
  border-top: 1px solid var(--gray-mid);
}
.faq-answer__inner p { font-size: .95rem; line-height: 1.8; }

/* ============================================================
   SOBRE PAGE
   ============================================================ */
.sobre-bio__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}
.sobre-bio__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--gray-light);
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.sobre-bio__photo img { width: 100%; height: 100%; object-fit: cover; }
.sobre-bio__placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px; color: var(--gray-text); font-size: .85rem;
}
.sobre-bio__placeholder svg { width: 48px; height: 48px; opacity: .3; }
.sobre-bio__content { display: flex; flex-direction: column; gap: 28px; }
.sobre-bio__content h2 { margin-bottom: -8px; }
.sobre-bio__content .lead {
  font-size: 1.1rem;
  color: var(--blue);
  font-weight: 500;
  line-height: 1.6;
}
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.value-card {
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex; flex-direction: column; gap: 8px;
  transition: all var(--transition);
}
.value-card:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.value-card__icon { font-size: 1.5rem; }
.value-card h4 { color: var(--blue-dark); }
.value-card p { font-size: .85rem; }

/* ============================================================
   ATENDIMENTO PAGE
   ============================================================ */
.atendimento__grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: start; }
.atendimento__main { display: flex; flex-direction: column; gap: 24px; }
.wpp-cta-box {
  background: linear-gradient(135deg, #1a1a2e, var(--blue-dark));
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  display: flex; flex-direction: column; gap: 16px; align-items: center;
}
.wpp-cta-box__icon {
  width: 72px; height: 72px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.wpp-cta-box__icon svg { width: 36px; height: 36px; color: var(--white); }
.wpp-cta-box h2 { color: var(--white); }
.wpp-cta-box p { color: rgba(255,255,255,.75); max-width: 360px; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-info-item {
  display: flex; align-items: center; gap: 16px;
  padding: 20px;
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}
.contact-info-item:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.contact-info-item__icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: rgba(27,79,156,.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-item__icon svg { width: 22px; height: 22px; color: var(--blue); }
.contact-info-item__text { display: flex; flex-direction: column; gap: 2px; }
.contact-info-item__label { font-size: .8rem; color: var(--gray-text); font-weight: 500; text-transform: uppercase; letter-spacing: .04em; }
.contact-info-item__value { font-weight: 600; font-size: .95rem; }
.atendimento__steps { padding: 32px; background: var(--gray-light); border-radius: var(--radius-lg); }
.atendimento__steps h3 { margin-bottom: 20px; }
.mini-steps { display: flex; flex-direction: column; gap: 16px; }
.mini-step { display: flex; align-items: flex-start; gap: 14px; }
.mini-step__num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--blue-dark);
  color: var(--yellow);
  font-weight: 700; font-size: .85rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mini-step__text { display: flex; flex-direction: column; gap: 2px; }
.mini-step__title { font-weight: 600; font-size: .9rem; }
.mini-step__desc { font-size: .85rem; color: var(--gray-text); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: .1s; }
.fade-in-delay-2 { transition-delay: .2s; }
.fade-in-delay-3 { transition-delay: .3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .benefits-preview__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .sobre-bio__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .sobre-bio__photo { position: static; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .section { padding: 56px 0; }

  .nav__links { display: none; }
  .nav__cta .btn--primary { display: none; }
  .nav__hamburger { display: flex; }

  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__image { order: -1; }
  .hero__photo-wrap { width: 260px; height: 300px; }
  .hero__content p { max-width: 100%; }

  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stats__divider { display: none; }

  .steps { grid-template-columns: 1fr; gap: 24px; }
  .steps::before { display: none; }

  .about__inner { grid-template-columns: 1fr; gap: 40px; }
  .testimonials__grid { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .sobre-bio__inner { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }

  .atendimento__grid { grid-template-columns: 1fr; }

  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 14px; border-radius: 50%; }
}

@media (max-width: 480px) {
  .benefits-preview__grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .cta-band__actions { flex-direction: column; align-items: center; }
}
