/* ============================================
   CSS LANDING PAGE — DRA. LORRANE MARTINS
   LM ODONTOLOGIA — INVISALIGN
   ============================================ */

/* ─── VARIABLES ─── */
:root {
  /* Brand Colors */
  --color-offwhite:    #F8F2E4;
  --color-nude:        #EDDFD8;
  --color-nude-dark:   #CDB8B5;
  --color-gray-light:  #DFDFE1;
  --color-gray-mid:    #C3CACC;
  --color-gray-dark:   #6B7280;
  --color-footer-bg:   #3D3D3D;
  --color-white:       #FFFFFF;
  --color-text:        #4A4A4A;
  --color-text-light:  #7A7A7A;
  --color-heading:     #3D3D3D;

  /* Gradients */
  --gradient-hero:     linear-gradient(135deg, #F8F2E4 0%, #EDDFD8 50%, #DFDFE1 100%);
  --gradient-nude:     linear-gradient(180deg, #EDDFD8 0%, #F8F2E4 100%);
  --gradient-soft:     linear-gradient(135deg, #F8F2E4 0%, #FFFFFF 100%);

  /* Typography */
  --font-heading:      'Caviar Dreams', 'Montserrat', sans-serif;
  --font-body:         'Montserrat', sans-serif;

  /* Spacing */
  --section-padding:   100px 0;
  --container-max:     1200px;

  /* Transitions */
  --ease-elegant:      cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-base:   all 0.4s var(--ease-elegant);

  /* Borders */
  --radius-sm:         8px;
  --radius-md:         16px;
  --radius-lg:         24px;
  --radius-full:       9999px;
}


/* ─── RESET & BASE ─── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden; /* Adicionado para forçar o corte de vazamentos laterais no mobile */
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-text);
  background-color: var(--color-white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}


/* ─── TYPOGRAPHY ─── */
h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  font-weight: 400;
  line-height: 1.25;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--color-text-light);
  font-weight: 300;
}


/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  border-radius: var(--radius-full);
  padding: 14px 32px;
  transition: var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s var(--ease-elegant);
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--color-nude-dark);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(205, 184, 181, 0.4);
}

.btn-primary:hover {
  background: #b9a09d;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(205, 184, 181, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--color-nude-dark);
  border-color: var(--color-nude-dark);
}

.btn-secondary:hover {
  background: var(--color-nude-dark);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 42px;
  font-size: 1rem;
}

.btn-icon {
  display: flex;
  align-items: center;
}


/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(248, 242, 228, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(195, 202, 204, 0.3);
  transition: var(--transition-base);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 30px rgba(0,0,0,0.06);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar-logo {
  display: flex;
  align-items: center;
}


.nav-logo-img {
  max-height: 40px;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.btn-nav {
  background: var(--color-nude-dark);
  color: var(--color-white);
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition-base);
  white-space: nowrap; /* Impede que o texto do botão quebre em duas linhas */
}

.btn-nav:hover {
  background: #b9a09d;
  transform: translateY(-1px);
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.navbar-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-heading);
  border-radius: 2px;
  transition: var(--transition-base);
}

.navbar-mobile-menu {
  display: none;
  padding: 8px 12px 10px;
}

.btn-nav-mobile {
  display: block;
  text-align: center;
  background: var(--color-nude-dark);
  color: var(--color-white);
  padding: 14px 24px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 500;
}


/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: stretch; /* Permite que o container interno encoste na base */
  background: var(--gradient-hero);
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(205, 184, 181, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(237, 223, 216, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch; /* Estica as colunas para a foto chegar ao chão */
  padding: 24px 24px 0; /* Reduz o espaçamento superior e zera o inferior */
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center; /* Mantém o texto centralizado verticalmente */
  padding-bottom: 40px; /* Impede que o texto cole totalmente no fundo */
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-nude-dark);
  background: rgba(205, 184, 181, 0.15);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-microcopy {
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-top: 16px;
}

.hero-trust {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.6);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(195, 202, 204, 0.3);
}

.trust-stars {
  color: #D4A574;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.trust-text {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text);
}

/* Hero Image */
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-image-wrapper {
  position: relative;
  z-index: 2;
}

.hero-image-glow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(205, 184, 181, 0.35) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: -1;
}

.hero-image-wrapper img {
  max-height: 600px;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.1));
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.hero-scroll-indicator span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid var(--color-gray-mid);
  border-radius: 12px;
  position: relative;
}

.hero-scroll-indicator span::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--color-nude-dark);
  border-radius: 2px;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50%      { opacity: 0.3; transform: translateX(-50%) translateY(10px); }
}


/* ─── EMOTIONAL SECTION ─── */
.emotional {
  padding: var(--section-padding);
  background: var(--gradient-nude);
  position: relative;
}

.emotional-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

.emotional .section-title {
  color: var(--color-heading);
  margin-bottom: 32px;
}

.emotional-text p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.9;
}

.emotional-text p:last-child {
  margin-bottom: 0;
}

.emotional-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.emotional-image-frame::before {
  content: '';
  position: absolute;
  top: -10px;
  right: -10px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-nude-dark);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.4;
}

.emotional-image-frame img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}


/* ─── BENEFITS SECTION ─── */
.benefits {
  padding: var(--section-padding);
  background: linear-gradient(180deg, var(--color-white) 0%, #F5F5F7 100%);
}

.benefits-header {
  text-align: center;
  margin-bottom: 60px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.benefit-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 48px 36px;
  text-align: center;
  box-shadow: 0 4px 30px rgba(0,0,0,0.04);
  border: 1px solid rgba(195, 202, 204, 0.25);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.benefit-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-nude), var(--color-nude-dark));
  transform: scaleX(0);
  transition: transform 0.5s var(--ease-elegant);
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.08);
}

.benefit-card:hover::after {
  transform: scaleX(1);
}

.benefit-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 28px;
  color: var(--color-nude-dark);
}

.benefit-icon svg {
  width: 100%;
  height: 100%;
}

.benefit-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 16px;
  color: var(--color-heading);
}

.benefit-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-text-light);
}


/* ─── FOR YOU SECTION ─── */
.for-you {
  padding: var(--section-padding);
  background: var(--color-white);
}

.for-you-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.checklist {
  list-style: none;
  margin: 32px 0 40px;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(195, 202, 204, 0.2);
  font-size: 1.05rem;
  line-height: 1.6;
}

.checklist-item:last-child {
  border-bottom: none;
}

.checklist-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: linear-gradient(135deg, var(--color-nude), var(--color-nude-dark));
  color: var(--color-white);
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 2px;
}

.for-you-visual {
  position: relative;
}

.for-you-image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  position: relative;
}

.for-you-image-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid rgba(205, 184, 181, 0.2);
  border-radius: var(--radius-lg);
  z-index: 2;
  pointer-events: none;
}

.for-you-image-frame img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}


/* ─── TESTIMONIALS SECTION ─── */
.testimonials {
  padding: var(--section-padding);
  background: var(--gradient-nude);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 50px;
}

.rating-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}

.rating-badge .stars {
  display: flex;
  gap: 4px;
}

.rating-text {
  font-size: 0.95rem;
  color: var(--color-text);
}

.rating-text a {
  font-weight: 600;
  color: var(--color-heading);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.04);
  border: 1px solid rgba(195, 202, 204, 0.2);
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.07);
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-text);
  font-style: italic;
  margin-bottom: 24px;
  flex-grow: 1; /* Faz o rodapé do card empurrar pro final se os textos tiverem tamanhos diferentes */
}

.testimonial-card footer {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(195, 202, 204, 0.3);
  padding-top: 16px;
}

.testimonial-card cite {
  font-weight: 600;
  font-style: normal;
  font-size: 0.95rem;
  color: var(--color-heading);
}

.testimonial-source {
  font-size: 0.8rem;
  color: var(--color-text-light);
}


/* ─── AUTHORITY SECTION ─── */
.authority {
  padding: var(--section-padding);
  background: var(--color-white);
  position: relative;
  overflow: hidden;
}

.authority-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 500px;
  opacity: 0.03;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 120 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='10,10 10,90 60,50 110,90 110,10' fill='none' stroke='%23CDB8B5' stroke-width='5' stroke-linejoin='miter' stroke-linecap='square'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.authority-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.authority-image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.authority-image-frame img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.authority-text {
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 16px;
}

.authority-seals {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.authority-seal {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
}

.authority-seal-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--color-nude);
  color: var(--color-nude-dark);
  border-radius: 50%;
  font-size: 0.9rem;
}


/* ─── JOURNEY SECTION ─── */
.journey {
  padding: var(--section-padding);
  background: linear-gradient(180deg, #F5F5F7 0%, var(--color-white) 100%);
}

.journey-header {
  text-align: center;
  margin-bottom: 72px;
}

.journey-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.journey-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-nude), var(--color-nude-dark), var(--color-gray-mid));
}

.journey-step {
  text-align: center;
  position: relative;
  padding: 0 16px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-white);
  border: 2px solid var(--color-nude-dark);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-nude-dark);
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
  transition: var(--transition-base);
}

.journey-step:hover .step-number {
  background: var(--color-nude-dark);
  color: var(--color-white);
  transform: scale(1.1);
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--color-heading);
}

.step-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-text-light);
}


/* ─── FAQ SECTION ─── */
.faq {
  padding: var(--section-padding);
  background: var(--color-white);
}

.faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(195, 202, 204, 0.3);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-heading);
  text-align: left;
  transition: var(--transition-base);
  gap: 16px;
}

.faq-question:hover {
  color: var(--color-nude-dark);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--color-nude-dark);
  transition: transform 0.3s var(--ease-elegant);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-elegant), padding 0.4s var(--ease-elegant);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 0 24px;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-text-light);
}


/* ─── LOCATION SECTION ─── */
.location {
  padding: var(--section-padding);
  background: var(--gradient-soft);
}

.location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.location-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 32px;
  color: var(--color-text-light);
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.location-icon {
  flex-shrink: 0;
  color: var(--color-nude-dark);
  margin-top: 2px;
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
  border: 1px solid rgba(195, 202, 204, 0.2);
}


/* ─── WHATSAPP FLOAT ─── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition-base);
  animation: floatPulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

@keyframes floatPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50%      { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}


/* ─── FOOTER ─── */
.footer {
  background: var(--color-footer-bg);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 40px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
}

.footer-logo-img {
  max-height: 100px; /* Ajuste este valor conforme necessário para o tamanho ideal no rodapé */
  max-width: 100%;
  object-fit: contain;
  display: block;
  /* filter: brightness(0) invert(1); -> Descomente esta linha se quiser forçar sua logo original a ficar toda branca */
}

.footer-legal-info p {
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-link {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-link:hover {
  color: var(--color-white);
}

.footer-divider {
  color: rgba(255,255,255,0.2);
}

.footer-disclaimer {
  max-width: 800px;
  padding: 24px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.08);
}

.footer-disclaimer p {
  font-size: 0.78rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}

.footer-disclaimer strong {
  color: rgba(255,255,255,0.8);
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  transition: var(--transition-base);
}

.footer-social a:hover {
  background: var(--color-nude-dark);
  color: var(--color-white);
  transform: translateY(-2px);
}

.footer-copyright p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}


/* ─── MODAL ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  padding: 24px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--color-white);
  border-radius: var(--radius-md);
  max-width: 640px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 48px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s var(--ease-elegant);
}

.modal-overlay.active .modal {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 1.3rem;
  color: var(--color-text-light);
  transition: color 0.3s;
  padding: 8px;
}

.modal-close:hover {
  color: var(--color-heading);
}

.modal-content h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: var(--color-heading);
}

.modal-content p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 16px;
  color: var(--color-text-light);
}


/* ─── ANIMATIONS ─── */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-elegant), transform 0.8s var(--ease-elegant);
}

[data-animate="fade-right"] {
  transform: translateX(-40px);
}

[data-animate="fade-left"] {
  transform: translateX(40px);
}

[data-animate="fade-up"] {
  transform: translateY(30px);
}

[data-animate="fade-up-delay"] {
  transform: translateY(30px);
  transition-delay: 0.2s;
}

[data-animate].visible {
  opacity: 1;
  transform: translate(0, 0);
}


/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-image-wrapper img {
    max-height: 450px;
  }

  .emotional-inner,
  .for-you-inner,
  .authority-inner,
  .location-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .benefits-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .journey-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .journey-timeline::before {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 72px 0;
  }

  /* Travas da Navbar exclusivas para o mobile */
  .navbar-inner {
    max-width: 100vw;
    gap: 16px;
  }

  .navbar-logo {
    flex: 1;
    min-width: 0;
  }

  .navbar-cta {
    flex-shrink: 0;
  }

  .hide-mobile {
    display: none;
  }

  .nav-logo-img {
    max-width: 250px; /* Reduz a largura máxima da logo no mobile para dar espaço ao botão */
  }

  .btn-nav {
    padding: 8px 16px; /* Ajusta o espaçamento do botão para caber melhor na tela estreita */
    font-size: 0.8rem;
  }

  .hero {
    min-height: auto;
    padding: 100px 0 60px;
  }

  .hero-content {
    padding-bottom: 0; /* Remove o respiro extra do desktop pois a imagem não aparece aqui */
  }

  .hero-scroll-indicator {
    display: none;
  }

  .benefits-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .journey-timeline {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .testimonials-badges {
    flex-direction: column;
    align-items: center;
  }

  .hero-image {
    display: none; /* Oculta totalmente a imagem da hero no mobile */
  }

  .emotional-image-frame img,
  .for-you-image-frame img,
  .authority-image-frame img {
    height: 300px;
  }

  .location-inner {
    grid-template-columns: 1fr;
  }

  .map-wrapper iframe {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .btn-lg {
    padding: 16px 28px;
    font-size: 0.9rem;
  }

  .benefit-card {
    padding: 36px 24px;
  }

  .modal {
    padding: 32px 24px;
  }

  .hero-trust {
    flex-direction: column;
    align-items: center;
  }
}
