/**
 * Estilos da Front Page (Landing Page - Seção Hero)
 */

/* ==========================================================================
   Seção Hero (Desktop & Global)
   ========================================================================== */
.hero {
  position: relative;
  width: 100%;
  height: 850px;
  min-height: 850px;
  overflow: hidden;
  box-sizing: border-box;
}

.hero__bg-picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(10, 33, 62, 0.88) 0%, rgba(10, 33, 62, 0.45) 55%, rgba(10, 33, 62, 0) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero__container {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero__content {
  text-align: left;
  transform: translateY(20px); /* Refinamento visual de centralização */
}

/* Quebras de Linha Responsivas para H1 */
@media (min-width: 768px) {
  .br-desktop {
    display: inline;
  }
  .br-mobile {
    display: none;
  }
}

@media (max-width: 767px) {
  .br-desktop {
    display: none;
  }
  .br-mobile {
    display: inline;
  }
}

/* Título H1 */
.hero__title {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 48px;
  line-height: 1.3;
  color: #FFFFFF;
  max-width: 582px;
  margin: 0;
}

.hero__title-highlight {
  color: #F8B76C;
  font-weight: 400;
}

/* Descrição */
.hero__description {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.70);
  max-width: 474px;
  margin-top: 16px;
  margin-bottom: 0;
}

/* Bloco de Ações */
.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

/* Botão Principal */
.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px 32px;
  background-color: #E19F53;
  color: #FFFFFF;
  border-radius: 2px;
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 200ms ease, transform 200ms ease, filter 200ms ease;
}

.btn-hero:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.btn-hero:focus-visible {
  outline: 2px solid #F8B76C;
  outline-offset: 3px;
}

.btn-hero__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: block;
}

/* Bloco Informativo de Atendimento */
.hero__attendance {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Bolinha Verde Pulsante */
@keyframes dotPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(86, 195, 22, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(86, 195, 22, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(86, 195, 22, 0);
  }
}

.hero__attendance-dot {
  width: 10px;
  height: 10px;
  background-color: #56C316;
  border-radius: 50%;
  flex-shrink: 0;
  animation: dotPulse 2s infinite;
}

@media (prefers-reduced-motion: reduce) {
  .hero__attendance-dot {
    animation: none;
  }
}

.hero__attendance-text {
  font-family: var(--font-primary);
  font-size: 14px;
  line-height: 1.6;
}

.hero__attendance-line1 {
  display: block;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.70);
}

.hero__attendance-line2 {
  display: block;
  font-weight: 600;
  color: #FFFFFF;
}

/* ==========================================================================
   Responsividade Hero (Tablet e Mobile)
   ========================================================================== */

/* Tablet (768px a 1023px) */
@media (max-width: 1023px) {
  .hero {
    height: 750px;
    min-height: 750px;
  }

  .hero__overlay {
    background: linear-gradient(180deg, rgba(10, 33, 62, 0.75) 0%, rgba(10, 33, 62, 0.95) 100%);
  }

  .hero__content {
    transform: translateY(10px);
  }

  .hero__title {
    font-size: 40px;
    max-width: 100%;
  }

  .hero__description {
    font-size: 18px;
    max-width: 100%;
  }
}

/* Mobile (<= 767px) - Hero de 900px de Altura com Foto Limpa no Topo */
@media (max-width: 767px) {
  .hero {
    height: 900px;
    min-height: 900px;
    padding: 0;
  }

  .hero__overlay {
    background: linear-gradient(180deg, rgba(10, 33, 62, 0.05) 0%, rgba(10, 33, 62, 0.45) 35%, rgba(10, 33, 62, 0.95) 55%, rgba(10, 33, 62, 1) 100%);
  }

  .hero__container {
    height: 100%;
    display: flex;
    align-items: flex-start;
  }

  .hero__content {
    width: 100%;
    padding-top: 390px; /* H1 inicia após a área dos rostos da equipe */
    transform: none;
  }

  .hero__title {
    font-size: clamp(32px, 8.4vw, 36px);
    line-height: 1.3;
    max-width: 100%;
  }

  .hero__description {
    font-size: 16px;
    line-height: 1.5;
    max-width: 100%;
    margin-top: 16px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px; /* 24px entre o botão e o bloco informativo */
    margin-top: 32px;
  }

  .btn-hero {
    width: 100%;
    box-sizing: border-box;
    padding: 18px 24px;
  }
}

/* ==========================================================================
   Seção Áreas de Atuação - Faixa Teaser Oficial (Figma Pixel-Perfect)
   ========================================================================== */

/* Breakpoint Desktop: >= 1200px (Faixa com 197px de altura exata) */
@media (min-width: 1200px) {
  .section-areas {
    position: relative;
    width: 100%;
    height: 197px;
    background-color: #061221;
    z-index: 10;
    box-sizing: border-box;
    overflow: visible;
  }

  .areas-teaser {
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    box-sizing: border-box;
  }

  .areas-teaser__cards {
    display: flex;
    gap: 20px;
    align-items: flex-end;
  }

  .area-card {
    flex: 0 0 305px;
    width: 305px;
    height: 242px;
    background-color: #0F2F57;
    border-radius: 2px 2px 0 0;
    position: relative;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-sizing: border-box;
    border: none;
    outline: none;
    box-shadow: none;
  }

  .area-card:hover {
    transform: none;
    filter: none;
    box-shadow: none;
    border: none;
    background-color: #0F2F57;
  }

  .area-card__icon {
    position: absolute;
    top: 28px;
    right: 28px;
    width: 32px;
    height: 32px;
    display: block;
    pointer-events: none;
  }

  .area-card__title {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 24px;
    line-height: 1.6em;
    color: #FFFFFF;
    margin: 0;
    text-align: left;
  }

  .areas-teaser__action {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .areas-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.6em;
    color: #FFFFFF;
    text-decoration: none;
    white-space: nowrap;
    opacity: 1;
    transition: opacity 180ms ease;
  }

  .areas-more:hover {
    opacity: 0.7;
    text-decoration: none;
    color: #FFFFFF;
    transform: none;
  }

  .areas-more:focus-visible {
    outline: 2px solid #E19F53;
    outline-offset: 4px;
    border-radius: 2px;
  }

  .areas-more__icon {
    width: 13px;
    height: 13px;
    display: block;
    flex-shrink: 0;
    pointer-events: none;
  }
}

/* Breakpoint Mobile e Tablet (< 1200px): Scroll Horizontal Nativo dentro do Container */
@media (max-width: 1199px) {
  .section-areas {
    position: relative;
    width: 100%;
    height: auto;
    background-color: #061221;
    padding-top: 40px;
    padding-bottom: 40px;
    z-index: 10;
    display: flow-root;
    overflow: visible;
  }

  .areas-teaser {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin-top: 0;
    position: relative;
  }

  .areas-teaser__cards {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 10px;
    margin-bottom: -10px;
  }

  .areas-teaser__cards::-webkit-scrollbar {
    display: none;
  }

  .area-card {
    flex: 0 0 min(305px, calc(100vw - 60px));
    width: min(305px, calc(100vw - 60px));
    height: 242px;
    min-height: 242px;
    flex-shrink: 0;
    background-color: #0F2F57;
    border-radius: 2px 2px 0 0;
    position: relative;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-sizing: border-box;
    scroll-snap-align: start;
    border: none;
    outline: none;
    box-shadow: none;
  }

  .area-card:hover {
    transform: none;
    filter: none;
    box-shadow: none;
    border: none;
    background-color: #0F2F57;
  }

  .area-card__icon {
    position: absolute;
    top: 28px;
    right: 28px;
    width: 32px;
    height: 32px;
    display: block;
    pointer-events: none;
  }

  .area-card__title {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 24px;
    line-height: 1.6em;
    color: #FFFFFF;
    margin: 0;
    text-align: left;
  }

  .areas-teaser__action {
    margin-top: 28px;
    display: flex;
    justify-content: flex-start;
  }

  .areas-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.6em;
    color: #FFFFFF;
    text-decoration: none;
    opacity: 1;
    transition: opacity 180ms ease;
  }

  .areas-more:hover {
    opacity: 0.7;
    text-decoration: none;
    color: #FFFFFF;
    transform: none;
  }

  .areas-more__icon {
    width: 13px;
    height: 13px;
    display: block;
    flex-shrink: 0;
    pointer-events: none;
  }
}

/* Animações de Entrada (data-animate="fade-up") */
[data-animate="fade-up"] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms cubic-bezier(0.16, 1, 0.3, 1), transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

[data-animate="fade-up"].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.areas-teaser__cards .area-card:nth-child(1) { transition-delay: 0ms; }
.areas-teaser__cards .area-card:nth-child(2) { transition-delay: 100ms; }
.areas-teaser__cards .area-card:nth-child(3) { transition-delay: 200ms; }
.areas-teaser__action[data-animate="fade-up"] { transition-delay: 300ms; }

@media (prefers-reduced-motion: reduce) {
  [data-animate="fade-up"] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ==========================================================================
   Seção Áreas de Atuação Completas (#areas-completas)
   ========================================================================== */
.areas-completas {
  position: relative;
  width: 100%;
  background-color: #FFFFFF;
  padding-top: 120px;
  padding-bottom: 120px;
  z-index: 5;
  box-sizing: border-box;
}

/* Layout Grid Desktop (215px + 109px gap + 955px = 1279px) */
.areas-completas__layout {
  display: grid;
  grid-template-columns: 215px 955px;
  column-gap: 109px;
  align-items: start;
}

/* Coluna Esquerda: CTA Sticky */
.areas-sticky-cta {
  position: sticky;
  top: calc(var(--header-fixed-height, 90px) + 24px);
  width: 215px;
  z-index: 10;
}

.btn-sticky-cta {
  width: 215px;
  height: 264px;
  background-color: #E19F53;
  border-radius: 2px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  box-sizing: border-box;
  text-decoration: none;
  transition: background-color 200ms ease, filter 200ms ease;
}

.btn-sticky-cta:hover {
  filter: brightness(1.08);
}

.btn-sticky-cta:focus-visible {
  outline: 2px solid #0A213E;
  outline-offset: 3px;
}

.btn-sticky-cta__icon {
  width: 20px;
  height: 20px;
  display: block;
}

.btn-sticky-cta__text {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #FFFFFF;
  text-align: left;
}

/* Coluna Direita (955px) */
.areas-completas__main {
  width: 955px;
  display: flex;
  flex-direction: column;
}

/* Header / Introdução */
.areas-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 64px;
}

.areas-intro__content {
  max-width: 680px;
}

.areas-intro__title {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 40px;
  line-height: 1.3em;
  color: #0A213E;
  margin: 0 0 20px 0;
}

.areas-intro__title .fw-semibold {
  font-weight: 600;
}

.areas-intro__text {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6em;
  color: rgba(10, 33, 62, 0.75);
  margin: 0 0 16px 0;
}

.areas-intro__subtext {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6em;
  color: rgba(10, 33, 62, 0.75);
  margin: 0;
}

/* Sticker Circular Giratório Real (sticker.avif) */
.sticker-badge {
  width: 140px;
  height: 140px;
  flex-shrink: 0;
}

.sticker-badge__img {
  width: 100%;
  height: 100%;
  display: block;
  animation: stickerRotate 25s linear infinite;
  transform-origin: center center;
}

@keyframes stickerRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .sticker-badge__img {
    animation: none;
  }
}

/* Lista de Cards Empilháveis (Sticky Stacking) */
.areas-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-bottom: 64px;
}

.area-service-card {
  position: sticky;
  top: calc(var(--header-fixed-height, 90px) + 24px);
  width: 955px;
  height: 292px;
  background-color: #F8F9FA;
  border-radius: 2px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  box-sizing: border-box;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.area-service-card--1 { z-index: 1; }
.area-service-card--2 { z-index: 2; }
.area-service-card--3 { z-index: 3; }
.area-service-card--4 { z-index: 4; }
.area-service-card--5 { z-index: 5; }

/* Detalhe Dourado no Canto Superior Esquerdo */
.area-service-card__badge {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 14px solid #E19F53;
  border-right: 14px solid transparent;
  pointer-events: none;
  z-index: 2;
}

/* Conteúdo Esquerdo do Card */
.area-service-card__body {
  flex: 1;
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  box-sizing: border-box;
  z-index: 1;
}

.area-service-card__title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.3em;
  color: #0A213E;
  margin: 0;
}

.area-service-card__desc {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6em;
  color: rgba(10, 33, 62, 0.75);
  margin: 12px 0 20px 0;
  max-width: 440px;
}

.btn-card-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  background-color: #0A213E;
  color: #FFFFFF;
  border-radius: 2px;
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 200ms ease, opacity 200ms ease;
}

.btn-card-whatsapp:hover {
  background-color: #123359;
  color: #FFFFFF;
  text-decoration: none;
}

.btn-card-whatsapp:focus-visible {
  outline: 2px solid #E19F53;
  outline-offset: 3px;
}

/* Mídia / Imagem com Clip-Path Diagonal */
.area-service-card__media {
  width: 420px;
  height: 100%;
  margin: 0;
  flex-shrink: 0;
  background-color: #E5E9EE;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
  position: relative;
  overflow: hidden;
}

.area-service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Bloco Final de Atendimento */
.areas-bottom-block {
  margin-top: 40px;
  max-width: 600px;
}

.areas-bottom-block__title {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.3em;
  color: #0A213E;
  margin: 0 0 12px 0;
}

.areas-bottom-block__text {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6em;
  color: rgba(10, 33, 62, 0.75);
  margin: 0 0 20px 0;
}

.areas-bottom-block__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #0A213E;
  text-decoration: underline;
  opacity: 1;
  transition: opacity 180ms ease;
}

.areas-bottom-block__link:hover {
  opacity: 0.7;
  color: #0A213E;
  text-decoration: underline;
}

.areas-bottom-block__link:focus-visible {
  outline: 2px solid #E19F53;
  outline-offset: 3px;
}

.areas-bottom-block__icon {
  width: 18px;
  height: 18px;
  display: block;
  flex-shrink: 0;
  pointer-events: none;
}

/* Símbolo Decorativo Absoluto */
.areas-bg-symbol {
  position: absolute;
  bottom: -40px;
  right: -500px;
  width: 1160px;
  height: auto;
  pointer-events: none;
  user-select: none;
  opacity: 0.85;
  z-index: 0;
}

/* ==========================================================================
   Seção Por Que Escolher o Andrade & Ribas? (#por-que-nos-escolher)
   ========================================================================== */
.section-why {
  background-color: #E19F53;
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
  overflow: hidden;
}

.why-layout {
  display: flex;
  gap: 70px;
  align-items: flex-start;
}

/* Coluna Esquerda */
.why-left {
  flex: 0 0 630px;
  max-width: 630px;
  position: relative;
}

.why-intro {
  margin-bottom: 48px;
}

.why-title {
  font-family: var(--font-primary, 'Figtree', sans-serif);
  font-size: 40px;
  font-weight: 400;
  line-height: 1.3em;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.why-title .fw-semibold {
  font-weight: 600;
}

.why-desc__main {
  font-family: var(--font-primary, 'Figtree', sans-serif);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
  color: #FFFFFF;
  margin-bottom: 24px;
  max-width: 500px;
}

.why-desc__highlight {
  font-family: var(--font-primary, 'Figtree', sans-serif);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
  color: #FFFFFF;
  margin: 0;
}

/* Imagem Principal & Wrapper */
.why-image-container {
  position: relative;
  width: 630px;
}

.why-image-wrap {
  width: 630px;
  height: 509px;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}

.why-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  transform: scale(1.08);
  transition: transform 1200ms cubic-bezier(0.25, 1, 0.5, 1);
}

.why-image-container.is-visible .why-image {
  transform: scale(1);
}

/* Card Sobreposto na Imagem (Dr. Marcos) */
.why-overlay-card {
  position: absolute;
  bottom: 40px;
  right: -50px;
  z-index: 2;
  background: #FFFFFF;
  border-radius: 5px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 
    -20px 38px 12px 0 rgba(214, 214, 214, 0.00),
    -13px 24px 11px 0 rgba(214, 214, 214, 0.01),
    -7px 14px 9px 0 rgba(214, 214, 214, 0.03),
    -3px 6px 7px 0 rgba(214, 214, 214, 0.05),
    -1px 2px 4px 0 rgba(214, 214, 214, 0.06);
}

.why-overlay-card__icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

.why-overlay-card__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.why-overlay-card__name {
  font-family: var(--font-primary, 'Figtree', sans-serif);
  font-size: 14px;
  font-weight: 600;
  color: #061221;
  line-height: 1.2em;
  white-space: nowrap;
}

.why-overlay-card__role {
  font-family: var(--font-primary, 'Figtree', sans-serif);
  font-size: 10px;
  font-weight: 400;
  color: rgba(6, 18, 33, 0.7);
  line-height: 1.2em;
}

/* Coluna Direita */
.why-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Grid 2x2 dos 4 Cards */
.why-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 271px);
  gap: 64px 24px;
}

.why-card {
  width: 271px;
  background: #FFFFFF;
  border-radius: 5px;
  position: relative;
  padding: 76px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.why-card__icon {
  position: absolute;
  top: -32px;
  left: 20px;
  width: 64px;
  height: 64px;
  border-radius: 5px;
  animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    from { transform: translate(0,  0px); }
    65%  { transform: translate(0, 15px); }
    to   { transform: translate(0, -0px); }   
}

.why-card__title {
  font-family: var(--font-primary, 'Figtree', sans-serif);
  font-size: 20px;
  font-weight: 600;
  color: #061221;
  line-height: 1.3em;
  margin-bottom: 12px;
}

.why-card__text {
  font-family: var(--font-primary, 'Figtree', sans-serif);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45em;
  color: rgba(15, 47, 87, 0.7);
  margin: 0;
}

/* Bloco CTA Inferior */
.why-cta-block {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 0;
}

.btn-why-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #0A213E;
  color: #FFFFFF;
  font-family: var(--font-primary, 'Figtree', sans-serif);
  font-size: 16px;
  font-weight:400;
  padding: 24px;
  border-radius: 5px;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-why-cta:hover {
  background-color: #123359;
  color: #FFFFFF;
}

.btn-why-cta__icon {
  width: 20px;
  height: 20px;
}

/* Bolinha Verde + Texto de Localização */
.why-location-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.why-green-dot {
  width: 10px;
  height: 10px;
  background-color: #56C316;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(86, 195, 22, 0.7);
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(86, 195, 22, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(86, 195, 22, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(86, 195, 22, 0);
  }
}

.why-location-text {
  font-family: var(--font-primary, 'Figtree', sans-serif);
  font-size: 14px;
  line-height: 1.35em;
  color: #FFFFFF;
  margin: 0;
}

.why-location-line1 {
  font-weight: 400;
}

.why-location-line2 {
  font-weight: 600;
}

.why-cards-grid .why-card:nth-child(1) { transition-delay: 0ms; }
.why-cards-grid .why-card:nth-child(2) { transition-delay: 100ms; }
.why-cards-grid .why-card:nth-child(3) { transition-delay: 200ms; }
.why-cards-grid .why-card:nth-child(4) { transition-delay: 300ms; }
.why-cta-block[data-animate="fade-up"] { transition-delay: 400ms; }

/* ==========================================================================
   Seção O Método Andrade & Ribas (#nosso-metodo)
   ========================================================================== */
.section-methods {
  background-color: #FFFFFF;
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
  overflow: hidden;
}

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

.methods__header-left {
  flex: 1;
  max-width: 645px;
}

.methods__title {
  font-family: var(--font-primary, 'Figtree', sans-serif);
  font-size: 40px;
  line-height: 1.3em;
  color: #061221;
  margin-bottom: 16px;
}

.methods__title-regular {
  font-weight: 400;
}

.methods__title-strong {
  font-weight: 600;
}

.methods__subtitle {
  font-family: var(--font-primary, 'Figtree', sans-serif);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
  color: #0F2F57;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 645px;
}

.methods__subtitle p {
  margin: 0;
}

.methods__subtitle strong {
  font-weight: 600;
}

.methods__subtitle-highlight {
  font-weight: 400;
  color: #061221;
}

/* Navegação / Contador à direita */
.methods__header-right {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

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

.methods__counter {
  font-family: var(--font-primary, 'Figtree', sans-serif);
  font-size: 16px;
  font-weight: 400;
  color: #061221;
  user-select: none;
}

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

.methods__arrow-btn {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
  user-select: none;
}

.methods__arrow-btn:not(:disabled):hover {
  transform: scale(1.05);
}

.methods__arrow-btn:disabled,
.methods__arrow-btn[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* Carrossel Full-Bleed */
.methods__carousel-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  position: relative;
  overflow: hidden;
}

.methods__carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: none; /* Ativado sob demanda via .is-snap-active para não abortar LCP no load */
  scroll-behavior: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-left: calc((100vw - 1280px) / 2);
  padding-right: calc((100vw - 1280px) / 2);
  padding-top: 10px;
  padding-bottom: 10px;
  outline: none;
}

.methods__carousel-track::-webkit-scrollbar {
  display: none;
}

.methods__carousel-track.is-snap-active {
  scroll-snap-type: x mandatory;
}

@media (max-width: 1280px) {
  .methods__carousel-track {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Card */
.methods__card {
  scroll-snap-align: start;
  flex: 0 0 630px;
  width: 630px;
  height: 770px;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-sizing: border-box;
}

.methods__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(6, 18, 33, 0.1) 0%, rgba(6, 18, 33, 0.7) 50%, rgba(6, 18, 33, 0.95) 100%);
  z-index: 1;
  pointer-events: none;
}

.methods__card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 0 50px 80px 50px;
  display: flex;
  flex-direction: column;
}

/* Wrapper Ícone + Título na mesma linha */
.methods-card__heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.methods-card__icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.methods-card__title {
  font-family: var(--font-primary, 'Figtree', sans-serif);
  font-size: 24px;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.3em;
  margin: 0;
}

.methods-card__text {
  font-family: var(--font-primary, 'Figtree', sans-serif);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6em;
  color: #FFFFFF;
  opacity: 0.9;
  margin-top: 0;
  margin-bottom: 16px;
}

/* Link CTA com Sublinhado Elegante */
.methods-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-primary, 'Figtree', sans-serif);
  font-size: 16px;
  font-weight: 400;
  color: #E19F53;
  text-decoration: none;
  transition: opacity 0.2s ease;
  width: fit-content;
}

.methods-card__link-text {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  color: #E19F53;
}

.methods-card__link:hover {
  opacity: 0.75;
}

.methods-card__arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.methods-card__link:hover .methods-card__arrow {
  transform: translateX(2px);
}

/* ==========================================================================
   Seção Nossa Equipe — Topo e Apresentação (#nossa-equipe)
   ========================================================================== */
.team-intro {
  background-color: #FFFFFF;
  padding-top: 80px;
  padding-bottom: 120px;
  position: relative;
  overflow: hidden;
}

/* Topo Decorativo: Linhas Pontilhadas + Sticker no Centro */
.team-intro__top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  margin-bottom: 80px;
  width: 100%;
}

.team-intro__line {
  flex: 1;
  height: 1px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
}

.team-intro__sticker {
  width: 110px;
  height: 110px;
  flex-shrink: 0;
  animation: spin-slow 20s linear infinite;
  display: block;
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .team-intro__sticker {
    animation: none !important;
  }
}

/* Imagem Principal da Equipe */
.team-intro__image-wrap {
  width: 842px;
  height: 520px;
  margin: 0 auto 64px auto;
  border-radius: 5px;
  overflow: hidden;
  max-width: 100%;
}

.team-intro__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  display: block;
}

/* Bloco de Textos Centralizado */
.team-intro__content {
  max-width: 474px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-intro__title {
  font-family: var(--font-primary, 'Figtree', sans-serif);
  font-size: 40px;
  font-weight: 400;
  color: #061221;
  line-height: 1.3em;
  margin-bottom: 16px;
}

.team-intro__title .fw-semibold {
  font-weight: 600;
}

.team-intro__lead {
  font-family: var(--font-primary, 'Figtree', sans-serif);
  font-size: 16px;
  font-weight: 600;
  color: #061221;
  line-height: 1.5em;
  margin: 0 0 16px 0;
}

.team-intro__text {
  font-family: var(--font-primary, 'Figtree', sans-serif);
  font-size: 16px;
  font-weight: 400;
  color: rgba(6, 18, 33, 0.7);
  line-height: 1.6em;
  margin: 0;
}

/* Team Grid (3 + 3 + 1 Desktop) */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px 20px;
  margin-top: 80px;
  margin-bottom: 0;
}

.team-card {
  display: flex;
  flex-direction: column;
}

.team-card--centered {
  grid-column: 2 / 3;
}

.team-card__media {
  width: 100%;
  height: 333px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 24px;
}

.team-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.team-card__content {
  display: flex;
  flex-direction: column;
}

.team-card__name {
  font-family: var(--font-primary, 'Figtree', sans-serif);
  font-size: 20px;
  font-weight: 600;
  color: #061221;
  line-height: 1.3em;
  margin: 0 0 4px 0;
}

.team-card__role {
  font-family: var(--font-primary, 'Figtree', sans-serif);
  font-size: 12px;
  font-weight: 400;
  color: #061221;
  line-height: 1.2em;
  opacity: 0.7;
  margin-bottom: 24px;
}

.team-card__desc {
  font-family: var(--font-primary, 'Figtree', sans-serif);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6em;
  color: rgba(6, 18, 33, 0.7);
  margin: 0;
}

.team-grid__cta {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 48px;
}

.btn-team-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #E19F53;
  color: #FFFFFF;
  font-family: var(--font-primary, 'Figtree', sans-serif);
  font-size: 16px;
  font-weight: 400;
  padding: 24px;
  border-radius: 5px;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-team-cta:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.btn-team-cta__icon {
  width: 20px;
  height: 20px;
}

/* ==========================================================================
   Seção Depoimentos / Avaliações (#depoimentos)
   ========================================================================== */
.testimonials-section {
  position: relative;
  background-image: url('../images/bg-depoimentos.avif');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 120px;
  padding-bottom: 120px;
  overflow: hidden;
}

.testimonials-section__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.testimonials-section__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 678px;
  flex: 1;
}

.testimonials-section__badge {
  font-family: var(--font-primary, 'Figtree', sans-serif);
  font-size: 14px;
  font-weight: 400;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-block;
  margin-bottom: 32px;
}

.testimonials-section__title {
  font-family: var(--font-primary, 'Figtree', sans-serif);
  font-size: 36px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.3em;
  max-width: 678px;
  margin: 0;
}

.testimonials-section__title .fw-semibold {
  font-weight: 600;
}

.testimonials-section__description {
  font-family: var(--font-primary, 'Figtree', sans-serif);
  font-size: 16px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.6em;
  margin: 0;
  opacity: 0.9;
}

.testimonials-section__brand {
  display: flex;
  align-items: center;
  gap: 100px;
  flex-shrink: 0;
}

.testimonials-section__google {
  width: 181px;
  height: 120px;
  object-fit: contain;
  display: block;
}

.testimonials-section__seal {
  width: 211px;
  height: 211px;
  object-fit: contain;
  display: block;
  animation: spinSeal 24s linear infinite;
}

@keyframes spinSeal {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonials-section__seal {
    animation: none;
  }
}

.testimonials-section__reviews {
  margin-top: 80px;
  width: 100%;
}

.testimonials-section__reviews .ti-widget {
  max-width: 100% !important;
}

.testimonials-section__bottom {
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn-testimonials-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #0A213E;
  color: #FFFFFF;
  font-family: var(--font-primary, 'Figtree', sans-serif);
  font-size: 16px;
  font-weight: 400;
  padding: 24px;
  border-radius: 5px;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-testimonials-cta:hover {
  background-color: #123359;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-testimonials-cta__icon {
  width: 20px;
  height: 20px;
}

.testimonials-section__location {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonials-green-dot {
  width: 10px;
  height: 10px;
  background-color: #56C316;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(86, 195, 22, 0.7);
  animation: pulse-green 2s infinite;
}

.testimonials-location-text {
  font-family: var(--font-primary, 'Figtree', sans-serif);
  font-size: 14px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.4em;
  margin: 0;
}

.testimonials-location-text strong {
  font-weight: 600;
  color: #FFFFFF;
}

/* ==========================================================================
   Seção Blog / Artigos Recentes (#blog)
   ========================================================================== */
.home-blog {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #FFFFFF;
}

.home-blog__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px auto;
}

.home-blog__title {
  font-family: var(--font-primary, 'Figtree', sans-serif);
  font-size: 40px;
  font-weight: 400;
  color: #061221;
  line-height: 1.3em;
  margin: 0 0 16px 0;
}

.home-blog__title .fw-semibold {
  font-weight: 600;
}

.home-blog__description {
  font-family: var(--font-primary, 'Figtree', sans-serif);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6em;
  color: rgba(6, 18, 33, 0.70);
  margin: 0 auto;
  max-width: 680px;
}

.home-blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.blog-card {
  border-radius: 5px;
  overflow: hidden;
  background-color: #0A213E;
  transition: transform 250ms ease, box-shadow 250ms ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(6, 18, 33, 0.15);
}

.blog-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.blog-card__media {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background-color: #2F2D2D;
}

.blog-card__media::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 24px 24px 0 0;
  border-color: #FFD6A6 transparent transparent transparent;
  z-index: 3;
}

.blog-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 250ms ease;
}

.blog-card:hover .blog-card__image {
  filter: brightness(0.82);
}

.blog-card__placeholder {
  width: 100%;
  height: 100%;
  background-color: #383838;
  transition: filter 250ms ease;
}

.blog-card:hover .blog-card__placeholder {
  filter: brightness(0.85);
}

.blog-card__content {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card__title {
  font-family: var(--font-primary, 'Figtree', sans-serif);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4em;
  color: #FFFFFF;
  margin: 0 0 16px 0;
}

.blog-card__excerpt {
  font-family: var(--font-primary, 'Figtree', sans-serif);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6em;
  color: rgba(255, 255, 255, 0.70);
  margin-bottom: 24px;
  flex: 1;
}

.blog-card__excerpt p {
  margin: 0;
}

.blog-card__read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-primary, 'Figtree', sans-serif);
  font-size: 14px;
  font-weight: 400;
  color: #FFD6A6;
  text-decoration: underline;
  margin-top: auto;
  transition: color 200ms ease;
}

.blog-card:hover .blog-card__read-more {
  color: #FFFFFF;
}

.blog-card__arrow {
  width: 16px;
  height: 16px;
  transition: transform 200ms ease;
}

.blog-card:hover .blog-card__arrow {
  transform: translateX(4px);
}

/* Barra Inferior de Metadados do Card (Data + Tempo de Leitura) */
.blog-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: auto;
}

.blog-card__meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-primary, 'Figtree', sans-serif);
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.70);
  line-height: 1.2em;
}

.blog-card__meta-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  opacity: 0.7;
  display: block;
}

.home-blog__footer {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-blog-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #2F2D2D;
  color: #FFFFFF;
  font-family: var(--font-primary, 'Figtree', sans-serif);
  font-size: 16px;
  font-weight: 500;
  padding: 24px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 200ms ease, transform 200ms ease;
}

.btn-blog-more:hover {
  background-color: #3F3C3C;
  color: #FFFFFF;
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .blog-card,
  .blog-card__image,
  .blog-card__placeholder,
  .blog-card__arrow,
  .btn-blog-more {
    transition: none !important;
    transform: none !important;
  }
}

/* ==========================================================================
   Seção FAQ / Perguntas Frequentes (#faq)
   ========================================================================== */
.section-faq {
  padding-top: 80px;
  padding-bottom: 120px;
  background-color: #FFFFFF;
}

.faq-intro-top {
  margin-bottom: 100px;
}

.faq-layout {
  display: grid;
  grid-template-columns: 215px 1fr;
  column-gap: 109px;
  align-items: flex-start;
}

.faq-sticky-cta {
  position: sticky;
  top: 120px;
  width: 215px;
}

.faq-main {
  flex: 1;
  max-width: 955px;
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
  gap: 32px;
}

.faq-header__title {
  font-family: var(--font-primary, 'Figtree', sans-serif);
  font-size: 40px;
  font-weight: 400;
  color: #061221;
  line-height: 1.3em;
  margin: 0;
}

.faq-header__title .fw-semibold {
  font-weight: 600;
}

.faq-header__location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-primary, 'Figtree', sans-serif);
  font-size: 14px;
  font-weight: 400;
  color: #061221;
  opacity: 0.7;
  white-space: nowrap;
  padding-top: 8px;
}

.faq-location-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

/* Accordion List */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-item {
  background-color: #F9F9F9;
  border-radius: 5px;
  border: 1px solid rgba(6, 18, 33, 0.02);
  overflow: hidden;
  transition: background-color 200ms ease;
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 28px 32px;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  outline: none;
}

.faq-item__trigger:focus-visible {
  outline: 2px solid #E19F53;
  outline-offset: -2px;
}

.faq-item__number {
  font-family: var(--font-primary, 'Figtree', sans-serif);
  font-size: 16px;
  font-weight: 400;
  color: rgba(6, 18, 33, 0.4);
  margin-right: 24px;
  flex-shrink: 0;
}

.faq-item__question {
  font-family: var(--font-primary, 'Figtree', sans-serif);
  font-size: 18px;
  font-weight: 600;
  color: #061221;
  line-height: 1.4em;
  flex: 1;
  margin-right: 16px;
}

.faq-item__chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 300ms ease;
}

.faq-item.is-open .faq-item__chevron {
  transform: rotate(180deg);
}

.faq-item__answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 300ms ease;
}

.faq-item.is-open .faq-item__answer-wrap {
  grid-template-rows: 1fr;
}

.faq-item__answer-inner {
  overflow: hidden;
}

.faq-item__answer-text {
  font-family: var(--font-primary, 'Figtree', sans-serif);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6em;
  color: rgba(6, 18, 33, 0.70);
  margin: 0;
  padding: 0 32px 28px 72px;
}

@media (prefers-reduced-motion: reduce) {
  .faq-item__chevron,
  .faq-item__answer-wrap {
    transition: none !important;
  }
}

/* ==========================================================================
   Seção Chamada Final para Ação (.final-contact-cta)
   ========================================================================== */
.final-contact-cta {
  height: 827px;
  min-height: 827px;
  box-sizing: border-box;
  background-image: url('../images/bg-cta.avif');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.final-contact-cta__container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.final-contact-cta__main-area {
  flex: 1;
  display: flex;
  align-items: flex-end;
  padding-bottom: 146px;
}

.final-contact-cta__main {
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.final-contact-cta__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.final-contact-cta__title {
  font-family: var(--font-primary, 'Figtree', sans-serif);
  font-size: 40px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.4em;
  margin: 0;
}

.final-contact-cta__title .highlight {
  font-weight: 600;
  color: #E19F53;
}

.final-contact-cta__description {
  font-family: var(--font-primary, 'Figtree', sans-serif);
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.70);
  line-height: 1.6em;
  margin: 0;
}

.final-contact-cta__cta-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.final-contact-cta__bottom {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.20);
  padding-top: 64px;
  padding-bottom: 50px;
  display: flex;
  align-items: center;
  gap: 52px;
}

.final-contact-cta__info-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-primary, 'Figtree', sans-serif);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6em;
  color: #FFFFFF;
}

.final-contact-cta__info-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}

/* ==========================================================================
   Rodapé Oficial do Site (.site-footer)
   ========================================================================== */
.site-footer {
  background-color: #08172A;
  padding-top: 80px;
  padding-bottom: 40px;
  color: #FFFFFF;
}

.footer-container {
  display: flex;
  flex-direction: column;
}

/* BLOCO 01 — WhatsApp + Logo + E-mail */
.footer-block-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  width: 100%;
  margin-bottom: 80px;
}

.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-contact-item--whatsapp {
  align-items: flex-start;
}

.footer-contact-item--email {
  align-items: flex-end;
}

.footer-contact-label {
  font-family: var(--font-primary, 'Figtree', sans-serif);
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.70);
  letter-spacing: 0.05em;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #FFFFFF;
  transition: opacity 200ms ease;
}

.footer-contact-link:hover {
  opacity: 0.85;
}

.footer-contact-value {
  font-family: var(--font-primary, 'Figtree', sans-serif);
  font-size: 20px;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.3em;
}

.footer-contact-item--email .footer-contact-value {
  font-size: 18px;
}

.footer-verified-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.footer-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-logo-img {
  width: 213px;
  height: auto;
  display: block;
}

/* BLOCO 02 — Conteúdo Institucional + Links */
.footer-block-middle {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.20);
  border-bottom: 1px solid rgba(255, 255, 255, 0.20);
  padding-top: 80px;
  padding-bottom: 80px;
  margin-bottom: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col--company {
  gap: 20px;
}

.footer-text {
  font-family: var(--font-primary, 'Figtree', sans-serif);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6em;
  color: rgba(255, 255, 255, 0.70);
  margin: 0;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

.footer-social-link {
  display: inline-block;
  transition: opacity 200ms ease;
}

.footer-social-link:hover {
  opacity: 0.75;
}

.footer-social-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
}

.footer-col-title {
  font-family: var(--font-primary, 'Figtree', sans-serif);
  font-size: 18px;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0 0 24px 0;
  line-height: 1.3em;
}

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

.footer-links-list a {
  font-family: var(--font-primary, 'Figtree', sans-serif);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.70);
  text-decoration: none;
  transition: color 200ms ease;
}

.footer-links-list a:hover {
  color: #FFFFFF;
}

/* BLOCO 03 — Crédito da Menzzo */
.footer-block-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.footer-credit-text {
  font-family: var(--font-primary, 'Figtree', sans-serif);
  font-size: 14px;
  font-weight: 400;
  color: #FFFFFF;
}

.footer-menzzo-link {
  display: inline-flex;
  align-items: center;
  transition: opacity 200ms ease;
}

.footer-menzzo-link:hover {
  opacity: 0.70;
}

.footer-menzzo-logo {
  width: 89px;
  height: auto;
  display: block;
}

/* ==========================================================================
   Responsividade: Tablet (768px a 1199px)
   ========================================================================== */
@media (max-width: 1199px) {
  .areas-completas {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .areas-completas__layout {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }

  .areas-sticky-cta {
    position: relative;
    top: 0;
    width: 100%;
  }

  .btn-sticky-cta {
    width: 100%;
    height: auto;
    padding: 24px;
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }

  .areas-completas__main {
    width: 100%;
  }

  .area-service-card {
    width: 100%;
    height: auto;
    min-height: 280px;
  }

  .why-layout {
    flex-direction: column;
    gap: 48px;
  }

  .why-left {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .why-image-container,
  .why-image-wrap {
    width: 100%;
    max-width: 630px;
  }

  .why-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-card {
    width: 100%;
  }

  .methods__card {
    flex: 0 0 540px;
    width: 540px;
    height: 680px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 20px;
  }

  .team-card--centered {
    grid-column: auto;
  }

  .testimonials-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .testimonials-section__brand {
    gap: 40px;
  }

  .testimonials-section__seal {
    width: 160px;
    height: 160px;
  }

  .home-blog {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .home-blog__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }

  .faq-sticky-cta {
    position: relative;
    top: 0;
    width: 100%;
  }

  .faq-intro-top {
    margin-bottom: 64px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 48px;
  }
}

/* ==========================================================================
   Responsividade: Mobile (<= 767px)
   ========================================================================== */
@media (max-width: 767px) {
  .areas-completas {
    padding-top: 80px;
    padding-bottom: 80px;
    overflow: hidden;
  }

  .areas-completas__layout {
    display: flex;
    flex-direction: column;
    row-gap: 0;
  }

  .areas-completas__main {
    display: contents;
  }

  .areas-intro {
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
  }

  .areas-intro__content {
    max-width: 100%;
  }

  .areas-intro__title {
    font-size: clamp(30px, 8vw, 34px);
    margin-bottom: 16px;
  }

  .areas-intro__text {
    margin-bottom: 12px;
  }

  .sticker-badge {
    width: 130px;
    height: 130px;
    align-self: flex-start;
    margin-top: 4px;
    margin-bottom: 4px;
  }

  .areas-sticky-cta {
    order: 2;
    position: relative;
    top: 0;
    width: 100%;
    margin-bottom: 40px;
  }

  .btn-sticky-cta {
    width: 100%;
    height: auto;
    padding: 20px 24px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
  }

  .areas-cards-stack {
    order: 3;
    gap: 32px;
    margin-bottom: 48px;
  }

  .area-service-card {
    position: relative;
    top: 0;
    width: 100%;
    height: auto;
    flex-direction: column;
    z-index: 1 !important;
  }

  .area-service-card__body {
    padding: 28px 24px;
  }

  .area-service-card__desc {
    max-width: 100%;
  }

  .area-service-card__media {
    width: 100%;
    height: 200px;
    clip-path: polygon(0 12%, 100% 0, 100% 100%, 0 100%);
  }

  .btn-card-whatsapp {
    width: 100%;
  }

  .areas-bottom-block {
    order: 4;
    margin-top: 0;
  }

  .areas-bg-symbol {
    width: 500px;
    right: -120px;
    bottom: -40px;
    opacity: 0.15;
  }

  .section-why {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .why-title {
    font-size: clamp(30px, 8vw, 40px);
    line-height: 1.3em;
  }

  .why-intro {
    margin-bottom: 32px;
  }

  .why-image-wrap {
    width: 100%;
    height: 320px;
  }

  .why-overlay-card {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 16px;
    width: fit-content;
  }

  .why-cards-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 48px;
  }

  .why-card {
    width: 100%;
    height: auto;
    min-height: 220px;
  }

  .why-cta-block {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }

  .btn-why-cta {
    width: 100%;
  }

  .why-location-info {
    justify-content: flex-start;
  }

  .section-methods {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .methods__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    margin-bottom: 40px;
  }

  .methods__header-left {
    max-width: 100%;
  }

  .methods__title {
    font-size: clamp(30px, 8vw, 36px);
  }

  .methods__nav {
    gap: 24px;
  }

  .methods__card {
    flex: 0 0 100%;
    width: 100%;
    height: 520px;
  }

  .methods__card-content {
    padding: 0 24px 40px 24px;
  }

  .team-intro {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .team-intro__top {
    gap: 24px;
    margin-bottom: 48px;
  }

  .team-intro__image-wrap {
    width: 100%;
    height: auto;
    min-height: 220px;
    margin-bottom: 48px;
  }

  .team-intro__title {
    font-size: clamp(30px, 8vw, 36px);
  }

  .team-intro__content {
    max-width: 100%;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 48px;
    margin-bottom: 0;
  }

  .team-card--centered {
    grid-column: auto;
  }

  .team-card__media {
    height: 360px;
    margin-bottom: 16px;
  }

  .team-grid__cta {
    margin-top: 48px;
  }

  .btn-team-cta {
    width: 100%;
  }

  .testimonials-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .testimonials-section__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }

  .testimonials-section__content {
    max-width: 100%;
  }

  .testimonials-section__title {
    font-size: clamp(28px, 7.5vw, 34px);
  }

  .testimonials-section__brand {
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }

  .testimonials-section__google {
    width: 140px;
    height: auto;
  }

  .testimonials-section__seal {
    width: 130px;
    height: 130px;
  }

  .testimonials-section__reviews {
    margin-top: 48px;
  }

  .testimonials-section__bottom {
    margin-top: 48px;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }

  .btn-testimonials-cta {
    width: 100%;
  }

  .testimonials-section__location {
    justify-content: flex-start;
  }

  .home-blog {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .home-blog__header {
    margin-bottom: 32px;
  }

  .home-blog__title {
    font-size: clamp(28px, 7.5vw, 32px);
  }

  .home-blog__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 32px;
  }

  .blog-card__media {
    height: 220px;
  }

  .btn-blog-more {
    width: 100%;
  }

  .section-faq {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .faq-intro-top {
    margin-bottom: 48px;
  }

  .faq-layout {
    display: flex;
    flex-direction: column;
  }

  .faq-main {
    order: 1;
  }

  .faq-sticky-cta {
    order: 2;
    position: relative;
    top: 0;
    width: 100%;
    margin-top: 48px;
  }

  .faq-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
  }

  .faq-header__title {
    font-size: clamp(28px, 7.5vw, 34px);
  }

  .faq-item__trigger {
    padding: 20px;
  }

  .faq-item__number {
    margin-right: 12px;
  }

  .faq-item__question {
    font-size: 16px;
  }

  .faq-item__answer-text {
    padding: 0 20px 20px 20px;
    font-size: 15px;
  }

  .final-contact-cta {
    height: 900px;
    min-height: 900px;
    background-image: url('../images/bg-cta-mobile.avif');
    background-position: center top;
    background-size: cover;
  }

  .final-contact-cta__main-area {
    align-items: flex-end;
    padding-bottom: 24px;
  }

  .final-contact-cta__main {
    max-width: 100%;
    gap: 24px;
  }

  .final-contact-cta__title {
    font-size: clamp(32px, 8vw, 36px);
  }

  .final-contact-cta__cta-wrap {
    margin-bottom: 0;
  }

  .final-contact-cta__cta-wrap .btn-team-cta {
    width: 100%;
  }

  .final-contact-cta__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .site-footer {
    padding-top: 64px;
    padding-bottom: 64px;
    border-top: none !important;
  }

  .footer-block-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
    margin-bottom: 56px;
  }

  .footer-logo-wrap {
    order: 1;
  }

  .footer-contact-item--whatsapp {
    order: 2;
    align-items: center;
    text-align: center;
  }

  .footer-contact-item--email {
    order: 3;
    align-items: center;
    text-align: center;
  }

  .footer-block-middle {
    padding-top: 56px;
    padding-bottom: 56px;
    margin-bottom: 56px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    justify-items: center;
  }

  .footer-col {
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .footer-col--company {
    align-items: center;
    text-align: center;
  }

  .footer-text,
  .footer-copyright,
  .footer-registration {
    text-align: center;
  }

  .footer-socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
    width: 100%;
  }

  .footer-col-title {
    text-align: center;
    margin-bottom: 16px;
  }

  .footer-links-list {
    align-items: center;
    text-align: center;
  }

  .footer-links-list a {
    text-align: center;
  }

  .footer-block-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-align: center;
  }
}


