/* ============================================================
   COMPONENTS — Amanda Domingues Advocacia
   components.css — Botões, cards, nav, footer, etc.
   ============================================================ */

/* ================================================================
   HEADER / NAV
   ================================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  padding: var(--space-md) 0;
  transition: background var(--duration-normal) var(--ease-default),
              box-shadow var(--duration-normal) var(--ease-default),
              padding var(--duration-normal) var(--ease-default);
}

/* Estado transparente (sobre o hero) */
.header--transparent {
  background: transparent;
}

/* Estado scrollado (glassmorphism) */
.header--scrolled {
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow);
  padding: var(--space-sm) 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Logo */
.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: var(--fw-bold);
  color: #fff;
  transition: opacity var(--duration-fast) var(--ease-default);
}

.header__logo:hover {
  opacity: 0.9;
}

.header__logo-icon {
  width: 36px;
  height: 36px;
}

.header__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.header__logo-name {
  color: var(--color-accent);
  font-size: var(--fs-small);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.header__logo-sub {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-regular);
  color: var(--color-text-on-dark-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Nav Links */
.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav__link {
  position: relative;
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: var(--space-xs) 0;
  transition: color var(--duration-fast) var(--ease-default);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-normal) var(--ease-smooth);
}

.nav__link:hover {
  color: #fff;
}

.nav__link:hover::after {
  transform: scaleX(1);
}

/* Mobile hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: var(--space-xs);
  cursor: pointer;
}

.nav__toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition: transform var(--duration-normal) var(--ease-smooth),
              opacity var(--duration-fast) var(--ease-default);
}

.nav__toggle.active .nav__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle.active .nav__toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active .nav__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Overlay */
.nav__mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--color-primary);
  z-index: var(--z-overlay);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-default);
}

.nav__mobile-overlay.active {
  display: flex;
  opacity: 1;
}

.nav__mobile-overlay .nav__link {
  font-size: var(--fs-h3);
  color: #fff;
}

/* Desktop: mostrar nav, esconder toggle */
@media (min-width: 769px) {
  .nav__list {
    display: flex;
  }

  .nav__toggle {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .nav__list {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }
}


/* ================================================================
   BOTÕES
   ================================================================ */

/* CTA Principal (Dourado) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: var(--fw-semibold);
  padding: 14px 32px;
  border-radius: var(--radius-md);
  transition: transform var(--duration-fast) var(--ease-default),
              box-shadow var(--duration-normal) var(--ease-default),
              background var(--duration-fast) var(--ease-default);
  position: relative;
  overflow: hidden;
  text-align: center;
  white-space: nowrap;
}

.btn--gold {
  background: var(--gradient-gold-shimmer);
  background-size: 200% auto;
  color: var(--color-primary);
  box-shadow: var(--shadow-md), var(--shadow-gold-glow);
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), var(--shadow-gold-glow-strong);
  background-position: right center;
}

.btn--gold:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm), var(--shadow-gold-glow);
}

/* CTA Grande (Hero) */
.btn--lg {
  padding: 18px 40px;
  font-size: var(--fs-body-lg);
}

/* CTA Terracota */
.btn--terracotta {
  background: var(--color-secondary);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn--terracotta:hover {
  background: var(--color-secondary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), 0 0 20px var(--color-secondary-glow);
}

.btn--terracotta:active {
  transform: translateY(0);
}

/* CTA Navy (sobre fundo dourado) */
.btn--navy {
  background: var(--color-primary);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn--navy:hover {
  background: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Botão outline */
.btn--outline {
  background: transparent;
  color: var(--color-accent);
  border: var(--border-gold-strong);
}

.btn--outline:hover {
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-2px);
}

/* Botão full-width mobile */
@media (max-width: 768px) {
  .btn--mobile-full {
    width: 100%;
  }

  .btn--lg {
    padding: 16px 32px;
    font-size: var(--fs-body);
  }
}

/* Arrow icon animation */
.btn__arrow {
  transition: transform var(--duration-fast) var(--ease-default);
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}

/* Ripple effect */
.btn::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 10%, transparent 10%);
  background-size: 1000%;
  background-position: center;
  opacity: 0;
  transition: background-size 0.5s, opacity 0.5s;
}

.btn:active::after {
  background-size: 100%;
  opacity: 1;
  transition: 0s;
}


/* ================================================================
   CARDS
   ================================================================ */

.card {
  position: relative;
  background: var(--color-bg-white);
  border: var(--border-gold-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: transform var(--duration-normal) var(--ease-smooth),
              box-shadow var(--duration-normal) var(--ease-smooth),
              border-color var(--duration-normal) var(--ease-default);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(212, 175, 55, 0.4);
}

/* Corner accent (moldura dourada parcial) */
.card--corner::before {
  content: '';
  position: absolute;
  top: -1px;
  right: -1px;
  width: 40px;
  height: 40px;
  border-top: 2px solid var(--color-accent);
  border-right: 2px solid var(--color-accent);
  border-radius: 0 var(--radius-lg) 0 0;
  opacity: 0.5;
  transition: opacity var(--duration-normal) var(--ease-default);
}

.card--corner:hover::before {
  opacity: 1;
}

/* Card ícone */
.card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-lg);
  transition: transform var(--duration-normal) var(--ease-smooth);
}

.card:hover .card__icon {
  transform: scale(1.1);
}

/* Card grande (empresarial) */
.card__icon--lg {
  width: 64px;
  height: 64px;
}

.card__title {
  font-family: var(--font-body);
  font-size: var(--fs-body-lg);
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.card__text {
  font-size: var(--fs-small);
  color: var(--color-text-light);
  line-height: var(--lh-body);
}

/* Card em fundo escuro */
.card--dark {
  background: var(--gradient-card-dark);
  border: 1px solid rgba(212, 175, 55, 0.15);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.card--dark:hover {
  background: var(--gradient-card-dark-hover);
  border-color: rgba(212, 175, 55, 0.4);
}

.card--dark .card__title {
  color: #fff;
}

.card--dark .card__text {
  color: rgba(255, 255, 255, 0.6);
}

/* Card clicável (link WhatsApp) */
.card--clickable {
  cursor: pointer;
  text-decoration: none;
}

.card--clickable:hover {
  border-color: var(--color-accent);
}


/* ================================================================
   BADGE
   ================================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--color-accent);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.badge--dark {
  background: rgba(212, 175, 55, 0.15);
}


/* ================================================================
   TRUST BAR (Hero)
   ================================================================ */
.trust-bar {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  padding-top: var(--space-lg);
  margin-top: var(--space-lg);
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  flex-wrap: wrap;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--fs-small);
  color: var(--color-text-on-dark-muted);
}

.trust-bar__icon {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
}


/* ================================================================
   SERVICO ITEM (lista dentro das seções)
   ================================================================ */
.service-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: padding-left var(--duration-fast) var(--ease-default);
}

.service-item:hover {
  padding-left: var(--space-sm);
}

.service-item:last-child {
  border-bottom: none;
}

.service-item__icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.service-item__name {
  font-weight: var(--fw-medium);
  font-size: var(--fs-body);
  color: var(--color-primary);
}

.service-item__arrow {
  margin-left: auto;
  color: var(--color-accent);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity var(--duration-fast) var(--ease-default),
              transform var(--duration-fast) var(--ease-default);
}

.service-item:hover .service-item__arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Versão escura */
.section--dark .service-item {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.section--dark .service-item__name {
  color: rgba(255, 255, 255, 0.9);
}


/* ================================================================
   TIMELINE (Como Funciona)
   ================================================================ */
.timeline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  padding: var(--space-xl) 0;
}

/* Linha conectora */
.timeline::before {
  content: '';
  position: absolute;
  top: 52px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--color-accent);
  opacity: 0.3;
}

.timeline__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  max-width: 220px;
  position: relative;
  z-index: 1;
}

.timeline__number {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: var(--gradient-gold);
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: var(--fw-bold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-gold-glow);
}

.timeline__icon {
  width: 28px;
  height: 28px;
  margin-bottom: var(--space-sm);
  color: var(--color-accent);
}

.timeline__title {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.timeline__desc {
  font-size: var(--fs-small);
  color: var(--color-text-light);
}

@media (max-width: 768px) {
  .timeline {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-xl);
  }

  .timeline::before {
    top: 0;
    bottom: 0;
    left: 31px;
    right: auto;
    width: 2px;
    height: 100%;
  }

  .timeline__step {
    flex-direction: row;
    text-align: left;
    gap: var(--space-lg);
    max-width: 100%;
  }

  .timeline__number {
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .timeline__content {
    display: flex;
    flex-direction: column;
  }
}


/* ================================================================
   CONTADORES
   ================================================================ */
.counters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: var(--space-lg) 0;
}

.counter {
  flex: 1;
  text-align: center;
  padding: 0 var(--space-xl);
  border-right: 1px solid rgba(212, 175, 55, 0.2);
}

.counter:last-child {
  border-right: none;
}

.counter__number {
  font-family: var(--font-heading);
  font-size: var(--fs-counter);
  font-weight: var(--fw-bold);
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: var(--space-xs);
  font-variant-numeric: tabular-nums;
}

.counter__label {
  font-size: var(--fs-small);
  color: var(--color-primary);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .counters {
    flex-wrap: wrap;
  }

  .counter {
    flex: 0 0 50%;
    padding: var(--space-md);
    border-right: none;
  }

  .counter:nth-child(odd) {
    border-right: 1px solid rgba(212, 175, 55, 0.2);
  }

  .counter:nth-child(1),
  .counter:nth-child(2) {
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  }
}


/* ================================================================
   TESTIMONIALS / CAROUSEL
   ================================================================ */
.testimonials-wrapper {
  overflow: hidden;
  position: relative;
}

.testimonials-track {
  display: flex;
  gap: var(--space-xl);
  position: relative;
}

.testimonial {
  flex: 0 0 calc(33.333% - var(--space-xl) * 2 / 3);
  background: var(--color-bg-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  position: relative;
}

.testimonial__quote {
  position: absolute;
  top: var(--space-md);
  left: var(--space-lg);
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--color-accent);
  opacity: 0.2;
  line-height: 1;
}

.testimonial__text {
  font-size: var(--fs-body);
  color: var(--color-text-muted);
  line-height: var(--lh-body);
  margin-bottom: var(--space-lg);
  padding-top: var(--space-lg);
  font-style: italic;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--color-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--fw-bold);
  color: var(--color-accent);
  font-size: var(--fs-body-lg);
}

.testimonial__name {
  font-weight: var(--fw-semibold);
  font-size: var(--fs-body);
  color: var(--color-primary);
}

.testimonial__source {
  font-size: var(--fs-xs);
  color: var(--color-text-light);
}

/* Dots de navegação */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: rgba(212, 175, 55, 0.3);
  cursor: pointer;
  transition: background var(--duration-fast) var(--ease-default),
              transform var(--duration-fast) var(--ease-default);
}

.carousel-dot.active {
  background: var(--color-accent);
  transform: scale(1.2);
}

@media (max-width: 1024px) {
  .testimonial {
    flex: 0 0 calc(50% - var(--space-xl) / 2);
  }
}

@media (max-width: 768px) {
  .testimonial {
    flex: 0 0 100%;
  }
}


/* ================================================================
   FAQ ACCORDION
   ================================================================ */
.faq-item {
  border-bottom: var(--border-light);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  font-family: var(--font-body);
  font-size: var(--fs-body-lg);
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  text-align: left;
  cursor: pointer;
  transition: color var(--duration-fast) var(--ease-default);
}

.faq__question:hover {
  color: var(--color-primary-light);
}

.faq__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--color-accent);
  transition: transform var(--duration-normal) var(--ease-smooth);
}

.faq-item.active .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-normal) var(--ease-smooth),
              padding var(--duration-normal) var(--ease-smooth);
}

.faq-item.active .faq__answer {
  max-height: 500px;
  padding-bottom: 20px;
}

.faq__answer-text {
  font-size: var(--fs-body);
  color: var(--color-text-muted);
  line-height: var(--lh-body);
  padding-left: var(--space-md);
}


/* ================================================================
   GOOGLE REVIEWS BADGE
   ================================================================ */
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
  background: var(--color-bg-white);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  box-shadow: var(--shadow-md);
}

.google-badge__stars {
  display: flex;
  gap: 2px;
  color: #FBBC04;
}

.google-badge__rating {
  font-weight: var(--fw-bold);
  font-size: var(--fs-body-lg);
  color: var(--color-primary);
}

.google-badge__count {
  font-size: var(--fs-small);
  color: var(--color-text-light);
}


/* ================================================================
   WHATSAPP FLUTUANTE
   ================================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: var(--color-whatsapp);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-whatsapp);
  z-index: var(--z-whatsapp);
  transition: transform var(--duration-fast) var(--ease-default),
              box-shadow var(--duration-fast) var(--ease-default);
  opacity: 0;
  transform: translateY(20px) scale(0.8);
}

.whatsapp-float.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px var(--color-whatsapp-glow);
}

.whatsapp-float__icon {
  width: 32px;
  height: 32px;
  fill: #fff;
}

/* Tooltip */
.whatsapp-float__tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--color-primary);
  color: #fff;
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  padding: 8px 14px;
  border-radius: var(--radius-md);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-fast) var(--ease-default),
              transform var(--duration-fast) var(--ease-default);
}

.whatsapp-float__tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--color-primary);
}

.whatsapp-float:hover .whatsapp-float__tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}


/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--color-bg-dark-alt);
  color: var(--color-text-on-dark-muted);
  padding: var(--space-3xl) 0 var(--space-xl);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-2xl);
}

.footer__title {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: var(--fw-semibold);
  color: #fff;
  margin-bottom: var(--space-lg);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer__text {
  font-size: var(--fs-small);
  line-height: var(--lh-body);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__link {
  font-size: var(--fs-small);
  transition: color var(--duration-fast) var(--ease-default);
}

.footer__link:hover {
  color: var(--color-accent);
}

.footer__social {
  display: flex;
  gap: var(--space-md);
}

.footer__social-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--duration-fast) var(--ease-default),
              color var(--duration-fast) var(--ease-default);
  color: var(--color-text-on-dark-muted);
}

.footer__social-icon:hover {
  background: rgba(212, 175, 55, 0.15);
  color: var(--color-accent);
}

.footer__bottom {
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-xs);
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
}


/* ================================================================
   PHOTO TREATMENT (Fotos da Dra. Amanda)
   ================================================================ */
.photo-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Moldura dourada nos cantos */
.photo-frame--gold::before,
.photo-frame--gold::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  z-index: 2;
}

.photo-frame--gold::before {
  top: -1px;
  right: -1px;
  border-top: 2px solid var(--color-accent);
  border-right: 2px solid var(--color-accent);
  border-radius: 0 var(--radius-lg) 0 0;
}

.photo-frame--gold::after {
  bottom: -1px;
  left: -1px;
  border-bottom: 2px solid var(--color-accent);
  border-left: 2px solid var(--color-accent);
  border-radius: 0 0 0 var(--radius-lg);
}

/* Drop shadow profunda */
.photo-frame--shadow {
  filter: drop-shadow(var(--shadow-photo));
}

/* Hero — estilos base (desktop) */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__content h1 {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  line-height: 1.1;
  margin-bottom: var(--space-md);
  letter-spacing: -0.01em;
}

.hero__content p {
  font-size: var(--fs-body-xl);
  max-width: 520px;
  line-height: 1.6;
}

.hero__photo {
  position: relative;
  z-index: 2;
}
/* Hero photo — sem fundo, fade nas bordas */
.hero__photo-wrapper {
  position: relative;
  display: inline-block;
  max-width: 420px;
}

.hero__photo-wrapper::after {
  display: none;
}

/* CTA sobreposto na transição da foto hero */
.hero__photo-cta {
  position: relative;
  z-index: 3;
  margin-top: -36px;
  text-align: center;
}

.hero__photo-wrapper img {
  display: block;
  filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.3));
}

/* ================================================================
   SECTION BRIDGE — Banner de transição entre seções
   ================================================================ */
.section-bridge {
  position: relative;
  height: 280px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-bridge__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.section-bridge__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 27, 42, 0.85) 0%,
    rgba(13, 27, 42, 0.5) 50%,
    rgba(13, 27, 42, 0.7) 100%
  );
  z-index: 1;
}

.section-bridge__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-lg);
}

.section-bridge__badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 6px 20px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

.section-bridge__text {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: var(--fw-bold);
  color: #fff;
  line-height: 1.3;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .section-bridge {
    height: 200px;
  }

  .section-bridge__text {
    font-size: 1.1rem;
  }

  .section-bridge__badge {
    font-size: 10px;
    padding: 4px 14px;
  }
}

/* Section photo — mesclada com fundo da seção */
.section-photo-blend {
  position: relative;
  display: inline-block;
  max-width: 420px;
}

.section-photo-blend img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.section-photo-blend::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Variante escura (seções navy) */
.section-photo-blend--dark::after {
  background:
    linear-gradient(to right, var(--color-bg-dark) 0%, transparent 25%, transparent 75%, var(--color-bg-dark) 100%),
    linear-gradient(to bottom, var(--color-bg-dark) 0%, transparent 15%, transparent 80%, var(--color-bg-dark) 100%);
}

/* Variante clara (seções off-white) — fade suave nas bordas inferior e direita */
.section-photo-blend--light::after {
  background:
    linear-gradient(to right, transparent 60%, var(--color-bg-light) 100%),
    linear-gradient(to bottom, transparent 70%, var(--color-bg-light) 100%);
}

.section-photo-blend--light img {
  border-radius: var(--radius-lg);
}

/* Clip-path assimétrico */
.photo-frame--asymmetric {
  border-radius: var(--radius-lg) var(--radius-xl) var(--radius-sm) var(--radius-lg);
}

.photo-frame--asymmetric-mirror {
  border-radius: var(--radius-xl) var(--radius-lg) var(--radius-lg) var(--radius-sm);
}


/* ================================================================
   LOCATION CARDS
   ================================================================ */
.location-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: border-color var(--duration-normal) var(--ease-default);
}

.location-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
}

.location-card__icon {
  width: 32px;
  height: 32px;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}

.location-card__city {
  font-family: var(--font-heading);
  font-size: var(--fs-h4);
  color: #fff;
  margin-bottom: var(--space-sm);
}

.location-card__address {
  font-size: var(--fs-small);
  color: var(--color-text-on-dark-muted);
  line-height: var(--lh-body);
}


/* ================================================================
   SECTION HIGHLIGHT (destaque introdutório)
   ================================================================ */
.section-highlight {
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
}

.section-highlight--dark {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.section-highlight--light {
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.section-highlight__items {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md) var(--space-xl);
}

.section-highlight__item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
}

.section-highlight--dark .section-highlight__item {
  color: rgba(255, 255, 255, 0.85);
}

.section-highlight--light .section-highlight__item {
  color: var(--color-text);
}

.section-highlight__item svg {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .section-highlight {
    padding: var(--space-sm) var(--space-md);
  }

  .section-highlight__items {
    gap: var(--space-sm) var(--space-lg);
  }

  .section-highlight__item {
    font-size: var(--fs-xs);
  }
}


/* ================================================================
   CTA FINAL (faixa dourada)
   ================================================================ */
.cta-final {
  background: var(--gradient-gold);
  padding: var(--space-xl) 0;
  text-align: center;
}

.cta-final h2 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.cta-final p {
  color: var(--color-primary);
  opacity: 0.8;
  margin-bottom: var(--space-xl);
}


/* ================================================================
   DESKTOP — REFINAMENTOS PREMIUM (min-width: 769px)
   ================================================================ */
@media (min-width: 769px) {

  /* Esconder elementos mobile-only no desktop */
  .mobile-only {
    display: none !important;
  }

  /* ══════════════════════════════════════════
     HERO DESKTOP — layout split premium
     ══════════════════════════════════════════ */
  .hero .bg-pattern-lines {
    opacity: 0.35;
    background: repeating-linear-gradient(
      -55deg,
      transparent,
      transparent 60px,
      rgba(255, 255, 255, 0.03) 60px,
      rgba(255, 255, 255, 0.03) 140px
    ) !important;
  }

  .hero .split--60-40 {
    gap: var(--space-3xl);
    min-height: calc(100vh - 120px);
    align-items: center;
  }

  /* ── Conteúdo: centralizado verticalmente, respiro elegante ── */
  .hero__content {
    align-self: center;
  }

  .hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-body);
    font-size: var(--fs-small);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-accent);
    margin-bottom: var(--space-lg);
  }

  .hero__eyebrow::before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 2px;
    background: var(--color-accent);
  }

  .hero__content h1 {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    line-height: 1.08;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.02em;
  }

  .hero__content p {
    font-size: var(--fs-body-lg);
    line-height: 1.7;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.65);
  }

  /* ── Hero: overflow controlado ── */
  .hero {
    overflow: hidden;
  }

  /* ── Foto: ancorada na base do hero ── */
  .hero__photo {
    align-self: end;
    position: relative;
    margin-bottom: -96px; /* compensa padding do hero */
  }

  .hero__photo-wrapper {
    max-width: 480px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
  }

  /* Glow dourado sutil atrás da Amanda */
  .hero__photo-wrapper::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 5%;
    right: 5%;
    bottom: 20%;
    background: radial-gradient(ellipse at center 30%, rgba(212, 175, 55, 0.06) 0%, transparent 60%);
    filter: blur(40px);
    z-index: 0;
    pointer-events: none;
  }

  /* Gradiente navy na base — mescla a foto com o fim da seção */
  .hero__photo-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to bottom, transparent 0%, rgba(13, 27, 42, 0.3) 30%, rgba(13, 27, 42, 0.7) 55%, rgba(13, 27, 42, 0.95) 80%, #0D1B2A 100%);
    z-index: 2;
    pointer-events: none;
  }

  .hero__photo-wrapper img {
    position: relative;
    z-index: 1;
    transform: scale(1.03);
    transform-origin: center top;
    filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.35));
  }

  /* ── CTA da foto escondido no desktop ── */
  .hero__photo-cta {
    display: none;
  }

  /* ── CTA no bloco de texto (desktop) ── */
  .hero__content .hero__cta-desktop {
    display: inline-flex;
    margin-top: var(--space-xl);
  }

  /* ── Trust bar — sutil, integrada ── */
  .trust-bar {
    margin-top: var(--space-2xl);
    gap: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
  }

  .trust-bar__item {
    font-size: var(--fs-xs);
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.03em;
  }

  .trust-bar__icon {
    width: 18px;
    height: 18px;
    opacity: 0.6;
  }

  /* Scroll indicator */
  .scroll-indicator {
    bottom: var(--space-xl);
  }


  /* ══════════════════════════════════════════
     SECTION BRIDGE — banner impactante
     ══════════════════════════════════════════ */
  .section-bridge {
    height: 340px;
  }

  .section-bridge__text {
    font-size: 2rem;
    letter-spacing: -0.01em;
  }

  .section-bridge__badge {
    font-size: var(--fs-small);
    padding: 8px 24px;
    margin-bottom: var(--space-lg);
  }


  /* ══════════════════════════════════════════
     SEÇÕES — mais respiro e elegância
     ══════════════════════════════════════════ */
  .section {
    padding-top: var(--space-4xl);
    padding-bottom: var(--space-4xl);
  }

  .section__header {
    margin-bottom: var(--space-2xl);
  }

  .section__header h2 {
    margin-bottom: var(--space-md);
  }

  .section__subtitle {
    font-size: var(--fs-body-xl);
  }


  /* ══════════════════════════════════════════
     CARDS — hover premium e espaçamento
     ══════════════════════════════════════════ */
  .card {
    transition: transform 0.4s var(--ease-smooth), box-shadow 0.4s var(--ease-smooth), border-color 0.3s ease;
    padding: var(--space-xl) var(--space-xl);
  }

  .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 64px rgba(13, 27, 42, 0.14);
  }

  .card--dark {
    padding: var(--space-lg) var(--space-xl);
  }

  .card--dark:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
  }


  /* ══════════════════════════════════════════
     PREVIDENCIÁRIO — serviços com mais respiro
     ══════════════════════════════════════════ */
  #previdenciario .split--65-35 {
    gap: var(--space-3xl);
  }

  .service-item {
    padding: var(--space-md) var(--space-sm);
    border-radius: var(--radius-sm);
    transition: padding-left 0.2s ease, background 0.2s ease;
  }

  .service-item:hover {
    padding-left: var(--space-md);
    background: rgba(212, 175, 55, 0.04);
  }

  .service-item__name {
    font-size: var(--fs-body-lg);
  }


  /* ══════════════════════════════════════════
     TRABALHISTA — grid 4 colunas com presença
     ══════════════════════════════════════════ */
  #trabalhista .split--35-65 {
    gap: var(--space-3xl);
  }

  #trabalhista .grid--2x4 {
    gap: var(--space-lg);
  }

  #trabalhista .card--dark .card__title {
    font-size: var(--fs-body-lg);
  }


  /* ══════════════════════════════════════════
     EMPRESARIAL — cards maiores e impactantes
     ══════════════════════════════════════════ */
  #empresarial .grid--3 {
    gap: var(--space-xl);
  }

  #empresarial .card {
    padding: var(--space-2xl) var(--space-xl);
  }

  #empresarial .card__icon--lg {
    margin-bottom: var(--space-xl);
  }


  /* ══════════════════════════════════════════
     TIMELINE — passos horizontais espaçados
     ══════════════════════════════════════════ */
  .timeline {
    padding: var(--space-2xl) 0;
  }

  .timeline__step {
    max-width: 240px;
  }

  .timeline__number {
    width: 72px;
    height: 72px;
    font-size: 1.75rem;
    margin-bottom: var(--space-lg);
  }

  .timeline__title {
    font-size: var(--fs-body-lg);
    margin-bottom: var(--space-sm);
  }

  .timeline__desc {
    font-size: var(--fs-body);
    line-height: 1.6;
  }


  /* ══════════════════════════════════════════
     SOBRE / DRA. AMANDA — mais presença
     ══════════════════════════════════════════ */
  #sobre .split--45-55 {
    gap: var(--space-3xl);
  }

  #sobre blockquote {
    margin-top: var(--space-xl);
    padding-left: var(--space-xl);
    font-size: var(--fs-body-lg);
    line-height: 1.7;
  }

  .photo-frame--gold::before,
  .photo-frame--gold::after {
    width: 80px;
    height: 80px;
  }


  /* ══════════════════════════════════════════
     PROVA SOCIAL — contadores impactantes
     ══════════════════════════════════════════ */
  .counters {
    padding: var(--space-xl) 0;
    margin-bottom: var(--space-lg);
  }

  .counter {
    padding: 0 var(--space-2xl);
  }

  .counter__number {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: var(--space-sm);
  }

  .counter__label {
    font-size: var(--fs-body);
    letter-spacing: 0.06em;
  }

  .testimonials-wrapper {
    margin-top: var(--space-lg);
  }

  .testimonial {
    padding: var(--space-2xl);
  }

  .testimonial__text {
    font-size: var(--fs-body-lg);
    line-height: 1.7;
  }


  /* ══════════════════════════════════════════
     FAQ — elegante e espaçado
     ══════════════════════════════════════════ */
  .faq__question {
    padding: var(--space-lg) 0;
    font-size: var(--fs-body-xl);
  }

  .faq__answer-text {
    font-size: var(--fs-body-lg);
    line-height: 1.7;
    padding-left: var(--space-lg);
  }


  /* ══════════════════════════════════════════
     LOCALIZAÇÃO — cards com mais presença
     ══════════════════════════════════════════ */
  .location-card {
    padding: var(--space-2xl);
  }

  .location-card__city {
    font-size: var(--fs-h3);
    margin-bottom: var(--space-md);
  }

  .location-card__address {
    font-size: var(--fs-body);
    line-height: 1.8;
  }


  /* ══════════════════════════════════════════
     CTA FINAL — impacto máximo
     ══════════════════════════════════════════ */
  .cta-final {
    padding: var(--space-3xl) 0;
  }

  .cta-final h2 {
    font-size: var(--fs-h2);
    margin-bottom: var(--space-lg);
  }

  .cta-final p {
    font-size: var(--fs-body-xl);
    margin-bottom: var(--space-xl);
  }


  /* ══════════════════════════════════════════
     FOOTER — mais espaçoso
     ══════════════════════════════════════════ */
  .footer {
    padding: var(--space-4xl) 0 var(--space-2xl);
  }

  .footer__grid {
    gap: var(--space-4xl);
    margin-bottom: var(--space-3xl);
  }

  .footer__title {
    font-size: var(--fs-body-lg);
    margin-bottom: var(--space-xl);
  }

  .footer__text {
    font-size: var(--fs-body);
    line-height: 1.7;
  }

  .footer__link {
    font-size: var(--fs-body);
    padding: var(--space-xs) 0;
  }
}


/* ================================================================
   MOBILE — REDESIGN COMPLETO
   ================================================================ */
@media (max-width: 768px) {

  /* ══════════════════════════════════════════
     HERO MOBILE — Estilo original: foto + listras em cima, texto embaixo
     ══════════════════════════════════════════ */
  .hero {
    min-height: auto !important;
    padding: 0 0 var(--space-sm) 0 !important;
    padding-top: 0 !important;
    display: flex !important;
    flex-direction: column;
    position: relative;
    overflow: hidden !important;
    align-items: stretch !important;
  }

  /* Listras diagonais brancas (como site original) */
  .hero .bg-pattern-lines {
    display: block !important;
    position: absolute !important;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: repeating-linear-gradient(
      -55deg,
      transparent,
      transparent 40px,
      rgba(255, 255, 255, 0.04) 40px,
      rgba(255, 255, 255, 0.04) 100px
    ) !important;
    opacity: 1 !important;
  }

  .hero .container {
    padding: 0 !important;
    width: 100%;
    max-width: 100%;
    overflow: visible !important;
  }

  .hero .section.container,
  .hero.section .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .hero .split--60-40 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    gap: 0;
  }

  /* Foto: em cima, centralizada, maior */
  .hero .split--60-40 > .hero__photo {
    position: relative !important;
    z-index: 2;
    display: block;
    width: 100%;
    order: -1 !important;
    padding-top: 50px !important; /* espaço pro header fixo */
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .hero__photo-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 auto !important;
    position: relative;
    overflow: hidden;
  }

  .hero__photo-wrapper img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3)) !important;
    transform: scale(1.18) translateY(8%);
    /* Fade gradual na base — desvanece suavemente para o fundo */
    -webkit-mask-image: linear-gradient(to bottom, white 60%, transparent 95%);
    mask-image: linear-gradient(to bottom, white 60%, transparent 95%);
  }

  /* Esconder moldura dourada, glow e overlay no mobile */
  .hero__photo-wrapper::before,
  .hero__photo-wrapper::after,
  .hero__photo::before,
  .hero__photo::after {
    display: none !important;
  }

  .hero__photo-wrapper {
    padding: 0 !important;
  }

  /* Esconder CTA da foto no mobile (já tem CTA no conteúdo) */
  .hero__photo-cta {
    display: none !important;
  }

  /* Conteúdo: abaixo da foto, centralizado, compacto */
  .hero__content {
    position: relative;
    z-index: 3;
    text-align: center;
    margin-top: -60px;
    padding: 0 var(--space-md) var(--space-sm);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero__eyebrow,
  .hero__cta-desktop {
    display: none !important;
  }

  .hero__content h1 {
    display: none !important;
  }

  .hero__content p {
    font-size: var(--fs-small) !important;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0 !important;
    line-height: 1.4;
    order: 10;
    margin-top: var(--space-sm) !important;
  }

  .hero__content .btn--lg {
    width: 100%;
    padding: 12px 24px;
    font-size: var(--fs-body);
  }

  /* Trust bar compacta abaixo do botão */
  .trust-bar {
    justify-content: center;
    flex-wrap: wrap;
    gap: 2px var(--space-md);
    margin-top: var(--space-sm) !important;
    padding-top: var(--space-xs);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
  }

  .trust-bar__item {
    font-size: 10px;
    gap: 3px;
  }

  .trust-bar__item svg {
    width: 12px;
    height: 12px;
  }

  .scroll-indicator {
    display: none;
  }

  /* ══════════════════════════════════════════
     SEÇÕES GERAIS — Layout mobile
     ══════════════════════════════════════════ */

  /* Seções: padding reduzido no mobile */
  .section {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
    overflow: hidden !important;
  }

  /* Hero precisa de padding zero (sobrescreve .section acima) */
  .section.hero {
    padding: 0 0 var(--space-sm) 0 !important;
  }

  .section .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  /* Forçar tudo a respeitar limites do container */
  .section .container > * {
    max-width: 100% !important;
  }

  .section .btn {
    white-space: normal !important;
    max-width: 100% !important;
  }

  .section .grid--2 {
    max-width: 100% !important;
    overflow: hidden !important;
  }

  .section__header {
    margin-bottom: var(--space-md) !important;
  }

  /* Fotos de seção: esconder no mobile para navegação rápida */
  #previdenciario .split--65-35 > .reveal--right {
    display: none;
  }

  #trabalhista .split--35-65 > .reveal--left {
    display: none;
  }

  /* Sobre: foto compacta no mobile */
  #sobre .split--45-55 > .reveal--left {
    text-align: center;
  }

  .photo-frame {
    max-width: 180px;
    margin: 0 auto var(--space-sm);
  }

  /* Sobre: esconder quote no mobile para compactar */
  #sobre blockquote {
    display: none;
  }

  /* Empresarial: esconder foto no mobile */
  #empresarial .empresarial-photo {
    display: none;
  }

  /* Empresarial: grid 2 colunas + 1 no mobile */
  #empresarial .grid--3 {
    grid-template-columns: 1fr 1fr !important;
    gap: var(--space-sm) !important;
    overflow: visible !important;
  }

  #empresarial .grid--3 > :last-child {
    grid-column: 1 / -1;
  }

  #empresarial .card {
    padding: var(--space-md) !important;
  }

  #empresarial .card__icon--lg {
    margin-bottom: var(--space-sm) !important;
  }

  #empresarial .card__icon--lg svg {
    width: 40px;
    height: 40px;
  }

  /* Previdenciário: serviços em grid 2x2 compacto */
  #previdenciario .grid--2 {
    grid-template-columns: 1fr 1fr !important;
    gap: 0 var(--space-md) !important;
  }

  #previdenciario .service-item {
    padding: 8px 0;
    font-size: var(--fs-small);
  }

  #previdenciario .service-item__arrow {
    display: none;
  }

  /* Esconder serviços extras no mobile */
  .desktop-only {
    display: none !important;
  }

  /* Headings: remover barra dourada lateral no mobile */
  .heading-bar {
    padding-left: 0 !important;
  }

  .heading-bar::before {
    display: none !important;
  }

  /* ══════════════════════════════════════════
     CARDS & GRIDS
     ══════════════════════════════════════════ */
  .grid--2x4 {
    grid-template-columns: 1fr 1fr !important;
    gap: var(--space-sm) !important;
  }

  .card {
    padding: var(--space-md);
  }

  .card--dark {
    padding: var(--space-sm) var(--space-md);
  }

  .card--dark .card__title {
    font-size: var(--fs-small) !important;
  }

  .card--dark .card__text {
    font-size: var(--fs-xs);
    line-height: 1.4;
  }

  #empresarial .card {
    padding: var(--space-lg);
  }

  /* ══════════════════════════════════════════
     TIMELINE / COMO FUNCIONA
     ══════════════════════════════════════════ */
  #como-funciona .timeline {
    gap: var(--space-md) !important;
  }

  .timeline__step {
    flex-direction: row;
    text-align: left;
    gap: var(--space-sm);
  }

  .timeline__number {
    width: 40px;
    height: 40px;
    font-size: var(--fs-body);
    flex-shrink: 0;
  }

  .timeline__icon {
    display: none;
  }

  .timeline__desc {
    font-size: var(--fs-small);
    margin-bottom: 0;
  }

  /* ══════════════════════════════════════════
     PROVA SOCIAL
     ══════════════════════════════════════════ */
  .counters {
    padding: var(--space-sm) 0;
  }

  .counter__number {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .counter__label {
    font-size: 10px;
  }

  .testimonials-track {
    gap: var(--space-sm);
  }

  .testimonial {
    padding: var(--space-md);
  }

  .testimonial__text {
    font-size: var(--fs-small);
  }

  .google-badge {
    padding: var(--space-sm) var(--space-md);
    gap: var(--space-sm);
  }

  /* ══════════════════════════════════════════
     FAQ / LOCALIZAÇÃO / CTA
     ══════════════════════════════════════════ */
  .faq__question {
    padding: 14px 0;
    font-size: var(--fs-body);
  }

  .location-card {
    padding: var(--space-md);
  }

  .cta-final {
    padding: var(--space-lg) 0;
  }

  .cta-final h2 {
    font-size: clamp(1.2rem, 5vw, 1.5rem);
  }

  /* ══════════════════════════════════════════
     FOOTER & WHATSAPP
     ══════════════════════════════════════════ */
  .footer {
    padding-top: var(--space-lg);
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 16px;
    right: 16px;
  }

  .whatsapp-float__tooltip {
    display: none;
  }
}

/* ── Extra small: 375px e abaixo ── */
@media (max-width: 375px) {
  .hero__content h1 {
    font-size: 1.4rem !important;
  }

  .grid--2x4 {
    grid-template-columns: 1fr !important;
  }

  .btn--lg {
    padding: 14px 20px;
    font-size: var(--fs-small);
  }

  .counter {
    padding: var(--space-xs) var(--space-sm);
  }

  .counter__number {
    font-size: 1.5rem;
  }

  .counter__label {
    font-size: var(--fs-xs);
  }
}

/* ══════════════════════════════════════════
   LARGE DESKTOP — 1400px+ hero refinements
   ══════════════════════════════════════════ */
@media (min-width: 1400px) {
  .hero {
    min-height: 92vh;
  }

  .hero .split--60-40 {
    min-height: calc(92vh - 120px);
    gap: var(--space-xl);
  }

  /* Texto maior para telas grandes */
  .hero__content h1 {
    font-size: 4.2rem;
    margin-bottom: var(--space-xl);
  }

  .hero__content p {
    font-size: 1.25rem;
    max-width: 560px;
  }

  /* Foto maior — preenche mais a coluna direita */
  .hero__photo-wrapper {
    max-width: 560px;
  }

  .hero__photo {
    margin-bottom: -120px;
  }

  /* Trust bar com mais presença */
  .trust-bar {
    margin-top: var(--space-3xl);
    gap: var(--space-2xl);
  }

  .trust-bar__item {
    font-size: var(--fs-small);
  }

  /* CTA maior */
  .hero__content .btn--lg {
    padding: 20px 48px;
    font-size: 1.125rem;
  }
}

/* ══════════════════════════════════════════
   EXTRA LARGE DESKTOP — 1700px+
   ══════════════════════════════════════════ */
@media (min-width: 1700px) {
  .hero {
    min-height: 85vh;
  }

  .hero .split--60-40 {
    min-height: calc(85vh - 120px);
  }

  .hero__content h1 {
    font-size: 4.8rem;
  }

  .hero__photo-wrapper {
    max-width: 620px;
  }

  .hero__photo {
    margin-bottom: -140px;
  }
}

/* ================================================================
   HERO PHOTO — TRATADA ALPHA 2026-05-29 (v2)
   PNG transparente (rembg), overlays CSS originais preservados
   (glow dourado + base fundindo no navy + listras de fundo visíveis).
   Só reforça drop-shadow pra dar peso.
   ================================================================ */
.hero__photo-wrapper img {
  filter: drop-shadow(0 14px 42px rgba(0, 0, 0, 0.5));
}
