/* =========================================
   LCH SERVIÇOS ADMINISTRATIVOS - STYLES
   ========================================= */

:root {
  --color-blue-dark: #041726;
  --color-blue: #0d3366;
  --color-blue-mid: #3257a5;
  --color-blue-light: #7695d9;
  --color-yellow: #fbc028;
  --color-yellow-light: #fcd34d;
  --color-amber: #f59e0b;
  --color-white: #ffffff;
  --color-bg: #f7f7f8;
  --color-bg-soft: #f2f3ff;
  --color-text: #041726;
  --color-text-soft: #5a6172;
  --color-border: #eeeeee;
  --font-main: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --container: 1200px;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(4, 23, 38, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 1rem;
}

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

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  border: 0;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-yellow);
  color: var(--color-blue-dark);
}

.btn--primary:hover {
  background: var(--color-yellow-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(251, 192, 40, 0.35);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 16px;
}

.btn--sm {
  padding: 10px 20px;
  font-size: 14px;
}

.btn--outline {
  background: transparent;
  color: var(--color-blue-dark);
  border: 1.5px solid var(--color-border);
}

.btn--outline:hover {
  background: var(--color-bg);
  transform: translateY(-1px);
}

/* SECTION COMMON */
.section__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-blue-mid);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section__eyebrow--light {
  color: var(--color-yellow);
}

.section__title {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--color-blue-dark);
  margin-bottom: 16px;
}

.section__title--light {
  color: var(--color-white);
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-blue-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 24px;
}

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

.header__nav a {
  color: var(--color-white);
  font-weight: 500;
  font-size: 15px;
  transition: opacity 0.15s;
}

.header__nav a:hover {
  opacity: 0.8;
}

.header__nav a.btn {
  color: var(--color-blue-dark);
}

.header__toggle {
  display: none;
  background: none;
  border: 0;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.header__toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: 0.2s;
}

/* HERO */
.hero {
  background: linear-gradient(180deg, var(--color-blue-dark) 0%, var(--color-blue) 100%);
  color: var(--color-white);
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-yellow);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(36px, 5.5vw, 64px);
  margin-bottom: 16px;
  line-height: 1.05;
}

.hero__lead {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.85;
  max-width: 480px;
}

.hero__image {
  position: relative;
}

.hero__image img {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.hero__bubble {
  position: absolute;
  background: var(--color-white);
  color: var(--color-blue-dark);
  padding: 12px 18px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow);
}

.hero__bubble--1 {
  top: 12%;
  left: -10%;
}

.hero__bubble--2 {
  top: 50%;
  right: -5%;
  background: var(--color-yellow);
}

/* Foto-card do hero (foto retangular no lugar do recorte PNG) */
.hero__photo-card {
  border-radius: 28px;
  box-shadow: 0 30px 60px -18px rgba(0, 0, 0, 0.55);
}

/* ADVANTAGES */
.advantages {
  padding: 80px 0;
  text-align: center;
}

.advantages .section__title {
  max-width: 700px;
  margin: 0 auto 48px;
}

.advantages__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: left;
}

.advantage-card {
  padding: 28px 24px;
  border-radius: var(--radius);
  background: var(--color-white);
  border: 1px solid var(--color-border);
}

.advantage-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--color-bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.advantage-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--color-blue-dark);
}

.advantage-card p {
  font-size: 14px;
  color: var(--color-text-soft);
  margin: 0;
}

/* TESTIMONIALS */
.testimonials {
  background: var(--color-bg);
  padding: 80px 0;
}

.testimonials__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.testimonials__header .section__title {
  max-width: 520px;
  margin: 0;
}

.testimonials__rating {
  text-align: right;
}

.rating {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
  margin-bottom: 4px;
}

.rating__score {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-blue-dark);
}

.rating__stars {
  height: 22px;
  width: auto;
}

.testimonials__rating p {
  font-size: 14px;
  color: var(--color-text-soft);
  margin: 4px 0;
}

.google-logo {
  height: 22px;
  width: auto;
  margin-left: auto;
}

.testimonials__carousel {
  position: relative;
}

.testimonials__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 12px;
  scrollbar-width: none;
}

.testimonials__track::-webkit-scrollbar { display: none; }

.testimonial {
  flex: 0 0 calc(50% - 12px);
  scroll-snap-align: start;
  background: var(--color-white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.testimonial__stars {
  height: 18px;
  width: auto;
  margin-bottom: 12px;
}

.testimonial__text {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: 16px;
}

.testimonial__author {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-blue-dark);
  margin: 0;
}

.testimonials__controls {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  background: var(--color-white);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.15s;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover { transform: scale(1.05); }

.carousel-btn img {
  width: 20px;
  height: 20px;
}

/* TICKER */
.ticker {
  background: var(--color-blue-light);
  color: var(--color-white);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker__track {
  display: inline-flex;
  gap: 24px;
  animation: tickerScroll 40s linear infinite;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.ticker__track > span {
  display: inline-block;
}

.ticker__dot {
  opacity: 0.6;
}

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ABOUT */
.about {
  background: var(--color-blue);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

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

.about__text {
  font-size: 16px;
  opacity: 0.85;
  margin-bottom: 16px;
}

.about__list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.about__list li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
}

.about__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-yellow);
  font-weight: 700;
}

.about__visual {
  position: relative;
}

.about__image {
  width: 100%;
  border-radius: var(--radius);
  margin: -1px;
}

.stat-card {
  position: absolute;
  background: var(--color-white);
  color: var(--color-blue-dark);
  padding: 14px 20px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  min-width: 180px;
}

.stat-card strong {
  display: block;
  font-size: 18px;
  margin-bottom: 2px;
}

.stat-card span {
  font-size: 12px;
  color: var(--color-text-soft);
}

.stat-card--1 { top: 10%; left: -8%; }
.stat-card--2 { top: 50%; right: -8%; }
.stat-card--3 { bottom: 10%; left: -5%; }

/* SERVICES */
.services {
  padding: 100px 0;
}

.services__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.services__lead {
  color: var(--color-text-soft);
  margin: 12px 0 0;
  max-width: 500px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card {
  position: relative;
  height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  background-color: var(--color-blue);
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--color-white);
  isolation: isolate;
  text-decoration: none;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(4, 23, 38, 0.85) 100%);
  z-index: -1;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card__link {
  font-weight: 600;
  color: var(--color-yellow);
  font-size: 14px;
  transition: gap 0.15s;
}

.service-card__link:hover {
  text-decoration: underline;
}

/* PARTNERS */
.partners {
  padding: 60px 0;
  border-top: 1px solid var(--color-border);
}

.partners__title {
  text-align: center;
  font-size: 14px;
  color: var(--color-text-soft);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.partners__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 48px;
}

.partners__logos img {
  width: 140px;
  height: 52px;
  object-fit: contain;
  opacity: 0.7;
  filter: grayscale(0.3);
  transition: opacity 0.2s, transform 0.2s;
}

.partners__logos img[src*="mercantil"],
.partners__logos img[src*="C6"] {
  transform: scale(1.7);
}

.partners__logos img[src*="mercantil"]:hover,
.partners__logos img[src*="C6"]:hover {
  transform: scale(1.7) translateY(-3px);
}

.partners__logos img:hover {
  opacity: 1;
  filter: none;
}

/* FAQ */
.faq {
  background: var(--color-bg);
  padding: 100px 0;
}

.faq__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.faq__lead {
  color: var(--color-text-soft);
  margin-bottom: 24px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 0;
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-blue-dark);
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  margin-left: auto;
  font-size: 24px;
  font-weight: 400;
  color: var(--color-blue-mid);
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item__num {
  font-weight: 700;
  color: var(--color-blue-mid);
}

.faq-item p {
  padding: 0 24px 20px;
  color: var(--color-text-soft);
  font-size: 15px;
  margin: 0;
}

/* CTA */
.cta {
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-mid) 100%);
  margin: 0 24px 60px;
  border-radius: 32px;
  position: relative;
  overflow: hidden;
  height: 240px;
}

/* Reveal animation on scroll */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.cta__image img,
.cta__chat__wrapper {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}
.cta.is-visible .cta__image img,
.cta.is-visible .cta__chat__wrapper {
  opacity: 1;
  transform: translateY(0);
}
.cta__chat__wrapper {
  transition-delay: 0.5s;
}

@media (min-width: 1248px) {
  .cta {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--container);
  }
}

.cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
  align-items: center;
  padding: 0 48px;
}

.cta__content {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
}

.cta__content .btn {
  align-self: flex-start;
}

.cta__content .section__title {
  font-size: clamp(22px, 2.5vw, 32px);
}

.cta__image {
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.cta__image img {
  height: 310px;
  width: auto;
  object-fit: contain;
  object-position: top;
  position: absolute;
}

.cliente-satisfeita {
  top: -20px;
  left: 125px;
}

.cta__chat__wrapper {
  position: absolute;
  top: 24px;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta__chat__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow);
  padding: 0;
  overflow: hidden;
}

.cta__chat__icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.cta__chat {
  background: var(--color-white);
  color: var(--color-blue-dark);
  padding: 12px 18px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 500;
  max-width: 190px;
  box-shadow: var(--shadow);
  line-height: 1.4;
}

/* FOOTER */
.footer {
  background: var(--color-blue-dark);
  color: var(--color-white);
  padding: 60px 0 30px;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 40px;
}

.footer__cta {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
}

.footer__top-link {
  color: var(--color-yellow);
  font-weight: 600;
  font-size: 14px;
}

.footer__main {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

.footer__logo {
  height: 36px;
  width: auto;
  margin-bottom: 16px;
}

.footer__brand p {
  font-size: 13px;
  opacity: 0.7;
  line-height: 1.6;
}

.footer__col h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-yellow);
  margin-bottom: 16px;
}

.footer__col a {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
  opacity: 0.85;
  transition: opacity 0.15s;
}

.footer__col a:hover {
  opacity: 1;
}

.footer__col a.btn {
  display: inline-flex;
  margin-bottom: 12px;
  opacity: 1;
  color: var(--color-blue-dark);
}

.footer__bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__company {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.footer__legal {
  font-size: 11px;
  opacity: 0.6;
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer__copy {
  font-size: 12px;
  opacity: 0.6;
  margin: 0;
}

/* FOOTER SEAL */
.footer__seal {
  margin-top: 16px;
  line-height: 0;
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 480px;
  margin: 0 auto;
  background: var(--color-white);
  padding: 16px 20px;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 99;
  font-size: 13px;
}

.cookie-banner.hidden { display: none; }

.cookie-banner p {
  margin: 0;
  flex: 1;
}

.cookie-banner a {
  color: var(--color-blue-mid);
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .advantages__grid,
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonial {
    flex: 0 0 calc(50% - 12px);
  }
  .footer__main {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
  .faq__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about__inner {
    grid-template-columns: 1fr;
  }
  .stat-card--1 { left: 0; }
  .stat-card--2 { right: 0; }
  .stat-card--3 { left: 0; }
}

@media (max-width: 768px) {
  .header__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-blue-dark);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .header__nav.is-open {
    display: flex;
  }
  .header__nav a {
    padding: 12px 16px;
    text-align: center;
  }
  .header__toggle {
    display: flex;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__image {
    order: -1;
    max-width: 320px;
    margin: 0 auto;
  }
  .hero__bubble--1 { left: 0; }
  .hero__bubble--2 { right: 0; }

  .advantages__grid,
  .services__grid {
    grid-template-columns: 1fr;
  }

  .testimonial {
    flex: 0 0 calc(100% - 24px);
  }

  .testimonials__header,
  .services__header,
  .footer__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .testimonials__rating {
    text-align: left;
  }

  .rating {
    justify-content: flex-start;
  }

  .google-logo { margin: 0; }

  .about {
    padding: 60px 0 0;
  }
  .about__list {
    grid-template-columns: 1fr;
  }
  .stat-card { display: none; }

  .cta {
    height: auto;
    min-height: 220px;
  }
  .cta__inner {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    height: auto;
  }
  .cta__image {
    display: none;
  }

  .footer__main {
    grid-template-columns: 1fr 1fr;
  }
  .footer__brand {
    grid-column: 1 / -1;
  }

  .cta {
    margin: 0 16px 40px;
    padding: 40px 24px;
  }

  .partners__logos {
    gap: 24px 32px;
  }
  .partners__logos img {
    width: 110px;
    height: 44px;
  }
}

@media (max-width: 480px) {
  .footer__main {
    grid-template-columns: 1fr;
  }
  .section__title {
    font-size: 28px;
  }
  .partners__logos {
    gap: 20px 24px;
  }
  .partners__logos img {
    width: 96px;
    height: 38px;
  }
}

/* =========================================
   PÁGINA EMPRÉSTIMO CLT
   ========================================= */

.section__title--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* HERO CLT */
.hero--clt {
  position: relative;
  background-image: url('../images/emprestimo/hero-woman.webp');
  background-size: cover;
  background-position: center right;
  padding: 0;
  overflow: hidden;
}

.hero--fgts {
  background-image: url('../images/emprestimo/familia-mesa.webp');
  background-position: center;
}

.hero--veiculo {
  background-image: url('../images/hero/dirigindo-ao-por-do-sol.png');
  background-position: center right;
  background-color: #041726;
}

.hero--clt::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(4,23,38,0.92) 40%, rgba(4,23,38,0.55) 70%, rgba(4,23,38,0.15) 100%);
}

.hero--clt .hero__inner {
  position: relative;
  z-index: 1;
  grid-template-columns: 1fr;
  padding-top: 90px;
  padding-bottom: 72px;
}

.hero--clt .hero__content {
  max-width: 580px;
}

.hero__stats-bar {
  position: relative;
  z-index: 1;
  background: rgba(4, 23, 38, 0.65);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 28px 0;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.hero-stat strong {
  display: block;
  font-size: 16px;
  color: var(--color-yellow);
  font-weight: 700;
}

.hero-stat span {
  font-size: 12px;
  color: var(--color-white);
  opacity: 0.85;
}

/* STEPS */
.steps {
  padding: 100px 0;
  background: var(--color-bg);
}

.steps .section__title {
  text-align: center;
  margin-bottom: 56px;
}

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

.step-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 0;
  text-align: center;
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.step-card__visual {
  background: #eef1fb;
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 28px 24px 44px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-card__num {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-white);
  color: var(--color-blue-dark);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid #dde3f4;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.step-card img {
  width: 100%;
  max-width: 180px;
  height: 110px;
  object-fit: contain;
}

/* STEPS — variação "processo" (4 passos, cards escuros) */
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.process-card {
  background: var(--color-blue-dark);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius);
  padding: 32px 26px 34px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.process-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.process-card__num {
  display: block;
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--color-yellow);
  margin-bottom: 18px;
}

.process-card h3 {
  font-size: 19px;
  color: var(--color-white);
  margin-bottom: 10px;
}

.process-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

@media (max-width: 900px) {
  .process__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
  .process__grid { grid-template-columns: 1fr; }
}

/* PRÉ-FILTRO (modal quiz da simulação de veículo) */
.prefilter {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.prefilter.is-open { display: flex; }

.prefilter__overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 23, 38, 0.72);
  backdrop-filter: blur(4px);
}

.prefilter__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: 0 24px 64px rgba(4, 23, 38, 0.35);
  padding: 40px 36px 36px;
  animation: prefilterIn 0.3s ease both;
}

@keyframes prefilterIn {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to   { opacity: 1; transform: none; }
}

.prefilter__close {
  position: absolute;
  top: 12px;
  right: 16px;
  border: none;
  background: none;
  font-size: 30px;
  line-height: 1;
  color: var(--color-text-soft);
  cursor: pointer;
  transition: color 0.2s;
}

.prefilter__close:hover { color: var(--color-blue-dark); }

.prefilter__intro-title {
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-blue-dark);
  margin: 0 36px 10px 0;
}

.prefilter__intro-text {
  font-size: 15px;
  color: var(--color-text-soft);
  margin-bottom: 22px;
}

.prefilter__divider {
  height: 1px;
  background: var(--color-border);
  margin-bottom: 22px;
}

.prefilter__progress {
  height: 6px;
  background: var(--color-bg-soft);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 24px;
}

.prefilter__bar {
  display: block;
  height: 100%;
  width: 0;
  background: var(--color-yellow);
  border-radius: 999px;
  transition: width 0.35s ease;
}

.prefilter__question {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-blue-dark);
  margin-bottom: 16px;
}

.prefilter__options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.prefilter__option {
  width: 100%;
  text-align: left;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--color-border);
  background: var(--color-white);
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-blue-dark);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.1s;
}

.prefilter__option:hover {
  border-color: var(--color-blue-dark);
  background: var(--color-bg-soft);
}

.prefilter__option:active { transform: scale(0.99); }

.prefilter__result { text-align: center; }

.prefilter__result-icon {
  font-size: 46px;
  line-height: 1;
  margin-bottom: 14px;
}

.prefilter__result h3 {
  font-size: clamp(20px, 3vw, 24px);
  color: var(--color-blue-dark);
  margin-bottom: 12px;
}

.prefilter__result p {
  font-size: 15px;
  color: var(--color-text-soft);
  margin-bottom: 24px;
}

.prefilter__alts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.prefilter__alts-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  margin-bottom: 2px;
}

@media (max-width: 540px) {
  .prefilter__dialog { padding: 36px 22px 26px; }
}

.step-card p {
  font-size: 15px;
  color: var(--color-text);
  font-weight: 500;
  padding: 36px 20px 24px;
  margin: 0;
}

.steps__cta {
  text-align: center;
}

.steps__cta p {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-blue-dark);
  margin-bottom: 16px;
}

/* SIMULATOR */
.simulator {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--color-bg-soft) 0%, var(--color-white) 100%);
}

.simulator__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: center;
}

.simulator__content h3 {
  font-size: clamp(24px, 3vw, 36px);
  color: var(--color-blue-dark);
  margin-bottom: 24px;
  line-height: 1.2;
}

.simulator__benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.simulator__benefits li {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-blue-dark);
}

.simulator__form {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
}

.simulator__form h2 {
  font-size: 24px;
  color: var(--color-blue-dark);
  margin-bottom: 20px;
  text-align: center;
}

.simulator__amount {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-bottom: 16px;
}

.amount-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--color-blue-mid);
  background: var(--color-white);
  color: var(--color-blue-mid);
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.amount-btn:hover {
  background: var(--color-blue-mid);
  color: var(--color-white);
}

.amount-display {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-size: 32px;
  font-weight: 700;
  color: var(--color-blue-dark);
}

.amount-currency {
  font-size: 18px;
  color: var(--color-text-soft);
}

#amountInput {
  border: 0;
  font-size: 32px;
  font-weight: 700;
  color: var(--color-blue-dark);
  font-family: inherit;
  width: 130px;
  text-align: center;
  outline: none;
  background: transparent;
}

.amount-range {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--color-bg);
  appearance: none;
  outline: none;
  margin-bottom: 24px;
}

.amount-range::-webkit-slider-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-yellow);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.amount-range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-yellow);
  cursor: pointer;
  border: 0;
}

.simulator__label {
  font-size: 14px;
  color: var(--color-text-soft);
  margin-bottom: 12px;
  font-weight: 500;
}

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

.term-btn {
  padding: 12px 8px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  color: var(--color-text-soft);
}

.term-btn:hover {
  border-color: var(--color-blue-mid);
  color: var(--color-blue-mid);
}

.term-btn.active {
  background: var(--color-blue);
  color: var(--color-white);
  border-color: var(--color-blue);
}

.simulator__submit {
  width: 100%;
  margin-bottom: 12px;
}

.simulator__note {
  font-size: 12px;
  color: var(--color-text-soft);
  text-align: center;
  margin: 0;
}

.simulator__note--info {
  font-size: 14px;
  color: var(--color-text);
  text-align: left;
  line-height: 1.5;
  margin: 16px 0 24px;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.03);
  border-left: 3px solid var(--color-yellow);
  border-radius: 4px;
}

/* ADVANTAGES CTA */
.advantages__cta {
  text-align: center;
  margin-top: 48px;
}

/* CTA CLT */
.cta-clt {
  background: linear-gradient(135deg, var(--color-blue-dark) 0%, var(--color-blue) 100%);
  margin: 0 24px 60px;
  padding: 80px 24px;
  border-radius: 32px;
  text-align: center;
}

@media (min-width: 1248px) {
  .cta-clt {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--container);
  }
}

.cta-clt__inner {
  max-width: 720px;
  margin: 0 auto;
}

.cta-clt__lead {
  color: var(--color-white);
  opacity: 0.85;
  margin: 16px 0 32px;
  font-size: 16px;
}

/* DRIVER HIGHLIGHT CARD */
.driver-highlight {
  padding: 0 0 80px;
}
.driver-highlight__card {
  margin: 0 24px;
  border-radius: 32px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--color-blue-dark);
  max-width: var(--container);
}
@media (min-width: 1248px) {
  .driver-highlight__card {
    margin-left: auto;
    margin-right: auto;
  }
}
.driver-highlight__content {
  padding: 60px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
.driver-highlight__content .section__eyebrow {
  color: var(--color-yellow);
  margin-bottom: 16px;
}
.driver-highlight__content h2 {
  color: var(--color-white);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  line-height: 1.2;
  margin-bottom: 16px;
}
.driver-highlight__content p {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.driver-highlight__list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.driver-highlight__list li {
  color: rgba(255,255,255,0.9);
  font-size: 15px;
}
.driver-highlight__image {
  min-height: 460px;
}
.driver-highlight__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
@media (max-width: 900px) {
  .driver-highlight__card {
    grid-template-columns: 1fr;
    margin: 0 16px;
  }
  .driver-highlight__image {
    min-height: 320px;
    order: -1;
  }
  .driver-highlight__content {
    padding: 40px 28px;
  }
}

/* RESPONSIVE - CLT PAGE */
@media (max-width: 1024px) {
  .hero__stats {
    position: relative;
    display: block;
    height: 72px;
    overflow: hidden;
    padding: 0;
  }
  .hero-stat {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: none;
    padding: 0 24px;
    opacity: 0;
    transform: translateY(10px);
  }
  .hero-stat.stat--active {
    opacity: 1;
    transform: translateY(0);
  }
  .steps__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .simulator__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .steps__grid {
    grid-template-columns: 1fr;
  }
  .simulator__terms {
    grid-template-columns: repeat(2, 1fr);
  }
  .simulator__form {
    padding: 24px 20px;
  }
  .cta-clt {
    margin: 0 16px 40px;
    padding: 48px 24px;
  }
  /* O inner usa .container (padding lateral) dentro de uma seção que já tem
     padding 24px — no mobile isso espremia o conteúdo e o botão transbordava.
     Zera o padding do inner aqui; o gutter da seção já é suficiente. */
  .cta-clt__inner {
    padding-left: 0;
    padding-right: 0;
  }
}

/* =========================================
   POST PAGE
   ========================================= */
.post-hero {
  background: linear-gradient(180deg, var(--color-blue-dark) 0%, var(--color-blue) 100%);
  color: var(--color-white);
  padding: 64px 0 80px;
}

.post-hero__inner {
  max-width: 800px;
  margin: 0 auto;
}

.post-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-yellow);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
  transition: opacity 0.15s;
}

.post-back:hover {
  opacity: 0.8;
}

.post-hero__category {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-yellow);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.post-hero h1 {
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.15;
  margin-bottom: 24px;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  font-size: 14px;
  opacity: 0.85;
}

.post-meta strong {
  color: var(--color-yellow);
  font-weight: 600;
  margin-right: 6px;
}

.post-cover {
  max-width: 1024px;
  margin: -40px auto 0;
  padding: 0 24px;
}

.post-cover img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 12px 48px rgba(4, 23, 38, 0.18);
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.post-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 24px 80px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--color-text);
}

.post-content > p {
  margin: 0 0 1.4em;
}

.post-content h2 {
  font-size: clamp(24px, 3vw, 32px);
  color: var(--color-blue-dark);
  margin: 2.4em 0 0.8em;
  line-height: 1.25;
}

.post-content h3 {
  font-size: clamp(20px, 2.4vw, 24px);
  color: var(--color-blue-dark);
  margin: 2em 0 0.6em;
  line-height: 1.3;
}

.post-content h4 {
  font-size: 18px;
  color: var(--color-blue-dark);
  margin: 1.6em 0 0.5em;
}

.post-content ul,
.post-content ol {
  margin: 0 0 1.4em;
  padding-left: 24px;
}

.post-content ul li,
.post-content ol li {
  margin-bottom: 8px;
}

.post-content blockquote {
  margin: 2em 0;
  padding: 20px 28px;
  border-left: 4px solid var(--color-yellow);
  background: var(--color-bg-soft);
  font-size: 18px;
  font-style: italic;
  color: var(--color-blue-dark);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.post-content blockquote p {
  margin: 0;
}

.post-content strong {
  color: var(--color-blue-dark);
  font-weight: 700;
}

.post-content a {
  color: var(--color-blue-mid);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.post-content a:hover {
  color: var(--color-blue);
}

.post-figure {
  margin: 2em 0;
  border-radius: 12px;
  overflow: hidden;
}
.post-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.post-content hr {
  border: 0;
  border-top: 1px solid var(--color-border);
  margin: 3em 0;
}

.post-faq {
  background: var(--color-bg);
  padding: 64px 0;
}

.post-faq__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.post-faq h2 {
  font-size: clamp(26px, 3.4vw, 36px);
  color: var(--color-blue-dark);
  margin-bottom: 32px;
}

.post-faq details {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  margin-bottom: 12px;
}

.post-faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  color: var(--color-blue-dark);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.post-faq summary::-webkit-details-marker { display: none; }

.post-faq summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--color-blue-mid);
  transition: transform 0.2s;
}

.post-faq details[open] summary::after {
  content: '−';
}

.post-faq details p {
  margin: 14px 0 0;
  color: var(--color-text-soft);
  line-height: 1.7;
}

.post-cta {
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-mid) 100%);
  color: var(--color-white);
  text-align: center;
  padding: 64px 24px;
  margin: 0 24px 60px;
  border-radius: 32px;
}

.post-cta h2 {
  color: var(--color-white);
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 16px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.post-cta p {
  opacity: 0.9;
  max-width: 560px;
  margin: 0 auto 28px;
  font-size: 16px;
}

@media (min-width: 1248px) {
  .post-cta {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Related posts */
.related-posts {
  padding: 64px 0 100px;
  background: var(--color-bg);
}

.related-posts h2 {
  font-size: clamp(24px, 3vw, 32px);
  color: var(--color-blue-dark);
  margin-bottom: 32px;
  text-align: center;
}

@media (max-width: 768px) {
  .post-content {
    padding: 48px 20px 64px;
    font-size: 16px;
  }
  .post-cover {
    margin-top: -24px;
    padding: 0 16px;
  }
  .post-cover img {
    aspect-ratio: 16 / 9;
  }
  .post-cta {
    margin: 0 16px 40px;
    padding: 48px 24px;
  }
}

/* =========================================================
   MODERN UI ENHANCEMENTS — APR 2026
   Polimento de hover/scroll-reveal nas páginas home / FGTS / CLT.
   Header e footer (componentes compartilhados) recebem o mesmo
   tratamento — assim mantêm-se idênticos em todas as páginas.
   ========================================================= */

:root {
  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes brandFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes brandFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
@keyframes brandGlow {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.55; }
  50%      { transform: translate(28%, 8%) scale(1.08); opacity: 0.95; }
}
@keyframes brandSlideIn {
  from { transform: translateY(120%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* ===== Generic scroll reveal (added via JS) ===== */
.fade-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
  will-change: opacity, transform;
}
.fade-on-scroll.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ===== HEADER — animated underline on nav links ===== */
.header__nav a:not(.btn) {
  position: relative;
  padding: 6px 0;
}
.header__nav a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--color-yellow);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s var(--ease-out);
  border-radius: 2px;
}
.header__nav a:not(.btn):hover::after,
.header__nav a:not(.btn).is-current::after {
  transform: scaleX(1);
}
.header__nav a:not(.btn).is-current { color: var(--color-yellow); opacity: 1; }
.header__logo img {
  transition: transform 0.3s var(--ease-out);
}
.header__logo:hover img { transform: scale(1.04); }

/* ===== Buttons — gloss sweep + lift ===== */
.btn { isolation: isolate; }
.btn:focus-visible {
  outline: 2px solid var(--color-blue-mid);
  outline-offset: 3px;
}
.btn--primary {
  position: relative;
  overflow: hidden;
  transition: transform 0.25s var(--ease-out), box-shadow 0.3s, background 0.25s;
}
.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 32%, rgba(255,255,255,0.55) 50%, transparent 68%);
  transform: translateX(-110%);
  transition: transform 0.75s var(--ease-out);
  pointer-events: none;
  z-index: -1;
}
.btn--primary:hover::before { transform: translateX(110%); }
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(251, 192, 40, 0.42);
}
.btn--primary:active { transform: translateY(0) scale(0.98); }

/* ===== Section eyebrow accent line ===== */
.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.section__eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  flex-shrink: 0;
}

/* ===== HERO (home) — entry animation + floating bubbles ===== */
.hero .hero__content > * { animation: brandFadeUp 0.8s var(--ease-out) both; }
.hero .hero__content > *:nth-child(1) { animation-delay: 0.05s; }
.hero .hero__content > *:nth-child(2) { animation-delay: 0.18s; }
.hero .hero__content > *:nth-child(3) { animation-delay: 0.32s; }
.hero .hero__content > *:nth-child(4) { animation-delay: 0.46s; }
.hero__image img { animation: brandFadeUp 1s var(--ease-out) 0.35s both; }
.hero__bubble { animation: brandFloat 5s ease-in-out infinite; }
.hero__bubble--1 { animation-delay: 0s; }
.hero__bubble--2 { animation-delay: -2.5s; }

/* HERO CLT/FGTS — entry */
.hero--clt .hero__content > * { animation: brandFadeUp 0.8s var(--ease-out) both; }
.hero--clt .hero__content > *:nth-child(1) { animation-delay: 0.10s; }
.hero--clt .hero__content > *:nth-child(2) { animation-delay: 0.22s; }
.hero--clt .hero__content > *:nth-child(3) { animation-delay: 0.36s; }
.hero--clt .hero__content > *:nth-child(4) { animation-delay: 0.50s; }

/* HERO stats bar ===== */
.hero-stat {
  transition: opacity 0.5s ease, transform 0.5s ease;
  border-radius: 8px;
}
.hero-stat img { transition: transform 0.35s var(--ease-bounce); }
.hero-stat:hover img { transform: scale(1.12) rotate(-4deg); }

@keyframes statFadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (min-width: 1025px) {
  .hero-stat { animation: statFadeUp 0.6s var(--ease-out) both; }
  .hero-stat:nth-child(1) { animation-delay: 0.55s; }
  .hero-stat:nth-child(2) { animation-delay: 0.70s; }
  .hero-stat:nth-child(3) { animation-delay: 0.85s; }
}

/* ===== ADVANTAGE CARDS ===== */
.advantage-card {
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.4s;
  position: relative;
  overflow: hidden;
}
.advantage-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 0% 0%, rgba(251,192,40,0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.advantage-card:hover {
  transform: translateY(-6px);
  border-color: rgba(50,87,165,0.20);
  box-shadow: 0 24px 40px -22px rgba(4,23,38,0.18);
}
.advantage-card:hover::after { opacity: 1; }
.advantage-card__icon {
  transition: transform 0.4s var(--ease-bounce), background 0.3s;
}
.advantage-card:hover .advantage-card__icon {
  transform: scale(1.12) rotate(-6deg);
  background: rgba(251,192,40,0.22);
}

/* ===== SERVICE CARDS (home) ===== */
.service-card {
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s;
}
.service-card::before {
  transition: opacity 0.4s, background 0.4s;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -25px rgba(4,23,38,0.55);
}
.service-card:hover::before {
  background: linear-gradient(180deg, transparent 15%, rgba(4, 23, 38, 0.92) 100%);
}
.service-card h3 { transition: transform 0.4s var(--ease-out); }
.service-card:hover h3 { transform: translateY(-2px); }
.service-card__link {
  display: inline-block;
  transition: transform 0.3s var(--ease-out), color 0.25s;
}
.service-card:hover .service-card__link {
  transform: translateX(6px);
  text-decoration: none;
}

/* ===== TESTIMONIALS ===== */
.testimonial {
  position: relative;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.3s;
  border: 1px solid transparent;
}
.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px -22px rgba(4,23,38,0.2);
  border-color: rgba(251,192,40,0.45);
}
.testimonial::before {
  content: '\201C';
  position: absolute;
  top: 6px;
  right: 18px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 72px;
  color: rgba(50,87,165,0.10);
  line-height: 1;
  pointer-events: none;
  font-weight: 700;
}
.carousel-btn {
  transition: transform 0.25s var(--ease-out), background 0.25s, box-shadow 0.25s;
}
.carousel-btn:hover {
  background: var(--color-yellow);
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 10px 24px rgba(251,192,40,0.4);
}

/* ===== TICKER — fade edges + pause on hover ===== */
.ticker {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.ticker:hover .ticker__track { animation-play-state: paused; }

/* ===== ABOUT — floating stat cards ===== */
.stat-card {
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
  animation: brandFloat 6s ease-in-out infinite;
}
.stat-card--1 { animation-delay: 0s; }
.stat-card--2 { animation-delay: -2s; }
.stat-card--3 { animation-delay: -4s; }
.stat-card:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 22px 44px rgba(4,23,38,0.25);
  z-index: 2;
}

/* ===== PARTNERS ===== */
.partners__logos img {
  transition: opacity 0.3s, filter 0.3s, transform 0.35s var(--ease-out);
}
.partners__logos img:hover {
  transform: translateY(-3px) scale(1.06);
}

/* ===== FAQ ===== */
.faq-item {
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.faq-item:hover {
  border-color: rgba(50,87,165,0.25);
  box-shadow: 0 8px 22px -10px rgba(4,23,38,0.12);
}
.faq-item[open] {
  border-color: var(--color-blue-mid);
  box-shadow: 0 12px 32px -16px rgba(50,87,165,0.30);
}
.faq-item summary { transition: color 0.2s; }
.faq-item:hover summary { color: var(--color-blue-mid); }
.faq-item summary::after {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(50,87,165,0.08);
  font-size: 18px;
  line-height: 1;
  margin-top: -2px;
  transition: background 0.25s, color 0.25s, transform 0.3s var(--ease-out);
}
.faq-item:hover summary::after {
  background: rgba(251,192,40,0.25);
  transform: rotate(90deg);
}
.faq-item[open] summary::after {
  background: var(--color-yellow);
  color: var(--color-blue-dark);
}
.faq-item[open] p {
  animation: brandFadeUp 0.45s var(--ease-out);
}

/* ===== STEPS (CLT/FGTS) ===== */
.step-card {
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.3s;
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px -20px rgba(4,23,38,0.18);
  border-color: rgba(251,192,40,0.5);
}
.step-card__visual {
  transition: background 0.4s;
}
.step-card:hover .step-card__visual {
  background: linear-gradient(135deg, #eef1fb 0%, #ffeebd 100%);
}
.step-card img { transition: transform 0.4s var(--ease-bounce); }
.step-card:hover img { transform: scale(1.08); }
.step-card__num {
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.35s var(--ease-bounce);
}
.step-card:hover .step-card__num {
  background: var(--color-yellow);
  color: var(--color-blue-dark);
  border-color: var(--color-yellow);
  transform: translateX(-50%) scale(1.12);
  box-shadow: 0 8px 20px rgba(251,192,40,0.45);
}

/* ===== SIMULATOR ===== */
.simulator__form {
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}
.simulator__form:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 60px -25px rgba(4,23,38,0.18);
}
.amount-btn {
  transition: background 0.25s, color 0.25s, transform 0.25s var(--ease-bounce), box-shadow 0.25s;
}
.amount-btn:hover {
  transform: scale(1.10);
  box-shadow: 0 6px 16px rgba(50,87,165,0.25);
}
.amount-btn:active { transform: scale(0.94); }
.amount-range::-webkit-slider-thumb {
  transition: transform 0.2s var(--ease-bounce), box-shadow 0.2s;
}
.amount-range:hover::-webkit-slider-thumb,
.amount-range:focus::-webkit-slider-thumb {
  transform: scale(1.18);
  box-shadow: 0 4px 14px rgba(251,192,40,0.55);
}
.term-btn {
  transition: transform 0.25s var(--ease-out), background 0.25s, border-color 0.25s, color 0.25s, box-shadow 0.25s;
}
.term-btn:hover {
  transform: translateY(-2px);
  background: var(--color-white);
  border-color: var(--color-blue-mid);
  color: var(--color-blue-dark);
  box-shadow: 0 8px 16px -10px rgba(50,87,165,0.45);
}
.term-btn.active {
  box-shadow: 0 8px 20px -8px rgba(13,51,102,0.55);
}

/* ===== CTA-CLT — glow ambiente ===== */
.cta-clt {
  position: relative;
  overflow: hidden;
}
.cta-clt::before {
  content: '';
  position: absolute;
  top: -40%; left: -10%;
  width: 60%; height: 200%;
  background: radial-gradient(closest-side, rgba(251,192,40,0.18), transparent 70%);
  pointer-events: none;
  animation: brandGlow 9s ease-in-out infinite;
  z-index: 0;
}
.cta-clt__inner { position: relative; z-index: 1; }

/* CTA home — bubble float ===== */
.cta__chat__wrapper { animation: brandFloat 5s ease-in-out infinite; }

/* ===== FOOTER — animated link underline ===== */
.footer__col a:not(.btn) {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  transition: opacity 0.2s, color 0.2s;
}
.footer__col a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: var(--color-yellow);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s var(--ease-out);
}
.footer__col a:not(.btn):hover {
  opacity: 1;
  color: var(--color-yellow);
}
.footer__col a:not(.btn):hover::after {
  transform: scaleX(1);
}
.footer__top-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.25s, transform 0.25s var(--ease-out);
}
.footer__top-link:hover {
  color: var(--color-yellow-light);
  transform: translateY(-3px);
}

/* ===== COOKIE banner ===== */
.cookie-banner {
  animation: brandSlideIn 0.6s var(--ease-out) 0.4s both;
}

/* ===== Reduced motion override ===== */
@media (prefers-reduced-motion: reduce) {
  .fade-on-scroll,
  .hero__bubble, .stat-card, .cta__chat__wrapper,
  .hero .hero__content > *, .hero__image img,
  .hero--clt .hero__content > *,
  .cookie-banner, .cta-clt::before {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

