/*
Theme Name: Dra. Lais Freitas Theme
Theme URI: https://dralaisfreitas.com.br/
Author: Visao 360 Agencia
Author URI: https://google.com
Description: Tema WordPress personalizado e elegante para o consultório de harmonização facial da Dra. Laís Freitas.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lais-freitas-theme
*/

/* ─── CONFIGURAÇÕES E ESTILOS GLOBAIS ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold: #b8973a;
  --gold-light: #d4b85e;
  --gold-soft: rgba(184, 151, 58, 0.15);
  --dark-green: #0d2a1f;
  --mid-green: #1a4030;
  --light-gray: #f4f4f2;
  --cream: #faf7f1;
  --warm-white: #fffdf8;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-muted: #666;
  --text-mid: #5c4a2e;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ─── HEADER / NAV ─── */
header {
  position: fixed; /* Fixo por padrão para seguir a rolagem */
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  background: transparent;
  transition: all 0.3s ease; /* Efeito de transição suave */
}

/* Fundo desfocado (Glassmorphism) e redução de padding ao rolar */
header.scrolled,
body.fixed-header header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(184, 151, 58, 0.12);
  box-shadow: 0 4px 20px rgba(13, 42, 31, 0.06);
  padding: 12px 48px;
}

/* Ajuste para o Admin Bar do WordPress */
body.admin-bar header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar header {
    top: 46px;
  }
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-monogram {
  height: 58px;
  width: auto;
  display: block;
}

nav {
  display: flex;
  align-items: center;
  gap: 38px;
}

nav a {
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dark-green);
  transition: color 0.2s;
  position: relative;
}

nav a:hover,
nav a.active {
  color: var(--gold);
}

nav a.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.nav-divider {
  width: 1px;
  height: 18px;
  background: #999;
}

.nav-search {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark-green);
  font-size: 1rem;
  padding: 0;
  display: flex;
  align-items: center;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 200;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark-green);
  transition: all 0.3s;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile dropdown */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.99);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: 20px 24px;
  flex-direction: column;
  gap: 0;
  z-index: 150;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark-green);
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: color 0.2s;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--gold);
}

/* Page Wrapper */
.page-wrapper {
  padding-top: 94px;
}

/* ─── HERO HOME ─── */
.hero {
  position: relative;
  width: 100%;
  height: 90vh;
  min-height: 520px;
  overflow: visible;
  background: #e5e2dd;
}

.hero-photo {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Scroll arrow */
.scroll-arrow {
  position: absolute;
  bottom: -23px;
  left: 50%;
  transform: translateX(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  animation: bounce 2s infinite;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.scroll-arrow svg {
  color: white;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* ─── SEÇÕES GENÉRICAS ─── */
.content-section {
  padding: 90px 60px;
  text-align: center;
}

.section-eyebrow {
  font-size: 0.6rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.3rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--dark-green);
  max-width: 600px;
  margin: 0 auto 40px;
}

.section-title strong {
  color: var(--gold);
  font-weight: 600;
}

/* ─── APRESENTAÇÃO EM VÍDEO ─── */
.video-intro-section {
  padding: 110px 48px 90px;
  background: var(--light-gray);
  text-align: center;
}

.video-intro-section .section-eyebrow {
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 14px;
}

.video-intro-section .section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--dark-green);
  margin-bottom: 18px;
  line-height: 1.2;
}

.video-intro-section .section-title strong {
  font-weight: 500;
  font-style: italic;
}

.video-intro-subtitle {
  max-width: 620px;
  margin: 0 auto 50px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.video-intro-frame {
  max-width: 420px;
  margin: 0 auto;
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(13, 42, 31, 0.22);
  background: var(--dark-green);
}

.video-intro-link {
  position: absolute;
  inset: 0;
  display: block;
  cursor: pointer;
  text-decoration: none;
  z-index: 1;
}

.video-intro-player {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: var(--dark-green);
}

.video-intro-sound {
  position: absolute;
  bottom: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(13, 42, 31, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.2s ease;
  z-index: 3;
}

.video-intro-sound:hover {
  background: var(--gold);
  transform: scale(1.06);
}

/* ─── TRATAMENTOS GRID ─── */
.treatments-section {
  background: var(--light-gray);
  padding: 90px 60px 100px;
  text-align: center;
}

.treatments-section .section-eyebrow {
  font-size: 0.6rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.treatments-section .section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.3rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--dark-green);
  max-width: 600px;
  margin: 0 auto 12px;
}

.treatments-section .section-title strong {
  color: var(--gold);
  font-weight: 600;
}

.treatments-subtitle {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  margin-bottom: 56px;
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, 220px);
  gap: 48px 32px;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto 60px;
}

.t-card {
  width: 220px;
  height: 400px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(13, 42, 31, 0.10);
  opacity: 0;
  transform: translateY(24px);
  animation: tFadeUp 0.6s ease forwards;
  text-decoration: none;
}

@keyframes tFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.t-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: sepia(20%) brightness(0.82) contrast(1.05);
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.55s ease;
}

.t-card:hover img {
  transform: scale(1.07);
  filter: sepia(5%) brightness(0.92) contrast(1.02);
}

.t-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 38%,
    rgba(120, 80, 20, 0.20) 62%,
    rgba(90, 58, 10, 0.78) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.t-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  z-index: 2;
  transition: width 0.4s ease, left 0.4s ease;
}

.t-card:hover::after {
  width: 55%;
  left: 22.5%;
}

.t-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 48px 16px 20px;
  text-align: center;
}

.t-card-label span {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
  transition: color 0.3s;
}

.t-card:hover .t-card-label span {
  color: #f0deb0;
}

.t-card-line {
  display: block;
  width: 0;
  height: 1px;
  background: var(--gold);
  margin: 8px auto 0;
  transition: width 0.4s ease 0.05s;
  opacity: 0.8;
}

.t-card:hover .t-card-line {
  width: 36px;
}

.treatments-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 13px 38px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, color 0.3s, transform 0.2s;
}

.treatments-cta:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

/* ─── TECNOLOGIAS ─── */
.technologies-section {
  background: var(--white);
  padding: 100px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.technologies-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.technologies-subtitle {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  max-width: 580px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.tech-card {
  background: var(--light-gray);
  padding: 38px 28px 32px;
  text-align: left;
  position: relative;
  border-radius: 18px;
  border-top: 2px solid var(--gold);
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.45s ease,
              background 0.45s ease,
              border-color 0.45s ease;
  overflow: hidden;
  isolation: isolate;
}

.tech-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 70%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(184, 151, 58, 0.06) 40%,
    rgba(184, 151, 58, 0.14) 50%,
    rgba(184, 151, 58, 0.06) 60%,
    transparent 100%
  );
  transition: left 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
  z-index: 0;
}

.tech-card:hover::before {
  left: 130%;
}

.tech-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.5s ease, left 0.5s ease;
  z-index: 1;
}

.tech-card:hover::after {
  width: 100%;
  left: 0;
}

.tech-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 18px 40px rgba(13, 42, 31, 0.12),
              0 4px 12px rgba(184, 151, 58, 0.08);
  background: #fdfcf8;
}

.tech-card > * {
  position: relative;
  z-index: 2;
}

.tech-icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  margin-bottom: 22px;
  transition: background 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              color 0.4s ease,
              transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.4s ease;
}

.tech-card:hover .tech-icon {
  background: var(--gold);
  color: #fff;
  transform: rotate(-8deg) scale(1.08);
  box-shadow: 0 6px 16px rgba(184, 151, 58, 0.35);
}

.tech-icon svg {
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.tech-card:hover .tech-icon svg {
  transform: rotate(8deg);
}

.tech-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--dark-green);
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  transition: color 0.35s ease, transform 0.35s ease;
}

.tech-card:hover .tech-name {
  color: #0a1f17;
  transform: translateX(3px);
}

.tech-badge {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(184, 151, 58, 0.10);
  padding: 4px 9px;
  border-radius: 50px;
  border: 1px solid rgba(184, 151, 58, 0.30);
}

.tech-desc {
  font-size: 0.8rem;
  line-height: 1.75;
  color: var(--text-muted);
  letter-spacing: 0.2px;
}

/* ─── PROTOCOLOS DE LONGO PRAZO ─── */
.protocols-section {
  background: linear-gradient(180deg, var(--light-gray) 0%, #ece9e2 100%);
  padding: 100px 60px;
  position: relative;
  overflow: hidden;
}

.protocols-section::before {
  content: '';
  position: absolute;
  top: 60px;
  right: -100px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(184, 151, 58, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.protocols-section::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(184, 151, 58, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.protocols-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 70px;
  position: relative;
  z-index: 2;
}

.protocols-subtitle {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  line-height: 1.8;
  margin-top: 8px;
}

.protocols-timeline {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.protocols-timeline::before {
  content: '';
  position: absolute;
  left: 39px;
  top: 30px;
  bottom: 30px;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(184, 151, 58, 0.4) 10%,
    rgba(184, 151, 58, 0.4) 90%,
    transparent 100%
  );
}

.protocol-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  margin-bottom: 36px;
  align-items: stretch;
  position: relative;
}

.protocol-item:last-child {
  margin-bottom: 0;
}

.protocol-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(184, 151, 58, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 1px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.protocol-item:hover .protocol-number {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(184, 151, 58, 0.35);
}

.protocol-card {
  background: var(--white);
  border-radius: 18px;
  padding: 36px 40px;
  position: relative;
  box-shadow: 0 4px 20px rgba(13, 42, 31, 0.05);
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.45s ease;
  overflow: hidden;
}

.protocol-card::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 32px;
  width: 16px;
  height: 16px;
  background: var(--white);
  transform: rotate(45deg);
  box-shadow: -2px 2px 4px rgba(13, 42, 31, 0.03);
}

.protocol-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: height 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.protocol-item:hover .protocol-card {
  transform: translateX(6px);
  box-shadow: 0 14px 36px rgba(13, 42, 31, 0.10);
}

.protocol-item:hover .protocol-card::after {
  height: 100%;
}

.protocol-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--dark-green);
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  line-height: 1.3;
}

.protocol-desc {
  font-size: 0.85rem;
  line-height: 1.85;
  color: var(--text-muted);
  letter-spacing: 0.2px;
  margin-bottom: 18px;
}

.protocol-detail-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 18px 0 12px;
}

.protocol-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.protocol-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--dark-green);
}

.protocol-features li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

.protocol-features li strong {
  font-weight: 500;
}

.protocol-signature {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 10px 18px;
  background: rgba(184, 151, 58, 0.08);
  border-left: 2px solid var(--gold);
  border-radius: 4px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--dark-green);
  letter-spacing: 0.3px;
}

.protocol-signature svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* ─── WHY SECTION (SOBRE) ─── */
.why-section {
  background: linear-gradient(180deg, #ffffff 0%, #faf7f1 100%);
  padding: 110px 60px;
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(184, 151, 58, 0.10);
  border-radius: 50%;
  pointer-events: none;
}

.why-section::after {
  content: '';
  position: absolute;
  bottom: 80px;
  right: 60px;
  width: 1px;
  height: 100px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  opacity: 0.4;
  pointer-events: none;
}

.why-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.why-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 560px;
}

.why-image-frame {
  position: absolute;
  inset: 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(13, 42, 31, 0.18);
}

.why-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: sepia(15%) brightness(0.95) contrast(1.05) saturate(0.9);
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.why-visual:hover .why-image-frame img {
  transform: scale(1.04);
}

.why-visual::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 24px;
  right: -24px;
  bottom: -24px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  z-index: -1;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.why-visual:hover::before {
  transform: translate(6px, 6px);
}

.why-content {
  text-align: left;
}

.why-content .section-eyebrow {
  margin-bottom: 14px;
}

.why-content .section-title {
  text-align: left;
  margin: 0 0 24px;
  font-size: 2.4rem;
  max-width: none;
}

.why-intro {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--text-muted);
  letter-spacing: 0.2px;
  margin-bottom: 40px;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
}

.why-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
}

.why-divider-line {
  flex: 0 0 40px;
  height: 1px;
  background: var(--gold);
}

.why-divider-text {
  font-size: 0.62rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.why-reasons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 32px;
}

.why-reason {
  position: relative;
  padding: 22px 4px 22px 0;
  border-top: 1px solid rgba(184, 151, 58, 0.25);
  transition: border-color 0.4s ease;
}

.why-reason:hover {
  border-top-color: var(--gold);
}

.why-reason-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 14px;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.why-reason:hover .why-reason-icon {
  transform: scale(1.15) rotate(-4deg);
}

.why-reason-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--dark-green);
  letter-spacing: 0.3px;
  margin-bottom: 8px;
  line-height: 1.3;
}

.why-reason-desc {
  font-size: 0.78rem;
  line-height: 1.7;
  color: var(--text-muted);
  letter-spacing: 0.2px;
}

/* ─── DEPOIMENTOS ─── */
.testimonials-section {
  padding: 110px 60px;
  background: linear-gradient(180deg, #ffffff 0%, #faf7f1 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.testimonials-section .section-eyebrow {
  margin-bottom: 14px;
}

.testimonials-section .section-title {
  margin-bottom: 40px;
}

.google-rating {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 64px;
  padding: 22px 36px;
  background: var(--white);
  border-radius: 60px;
  box-shadow: 0 8px 28px rgba(13, 42, 31, 0.08);
  position: relative;
}

.google-rating-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 28px;
  border-right: 1px solid rgba(184, 151, 58, 0.25);
}

.google-rating-logo-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.google-rating-logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.4;
  text-align: left;
}

.google-rating-logo-text strong {
  display: block;
  color: var(--dark-green);
  font-size: 0.7rem;
  letter-spacing: 1.5px;
}

.google-rating-score-block {
  display: flex;
  align-items: center;
  gap: 16px;
}

.google-rating .score {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--dark-green);
  line-height: 1;
  letter-spacing: -1px;
}

.google-rating-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.google-rating .stars {
  color: #F4B400;
  font-size: 1.1rem;
  letter-spacing: 3px;
  line-height: 1;
}

.google-rating .count {
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1140px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--white);
  padding: 56px 32px 36px;
  text-align: left;
  position: relative;
  border-radius: 18px;
  border: 1px solid rgba(184, 151, 58, 0.18);
  box-shadow: 0 4px 20px rgba(13, 42, 31, 0.04);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.5s ease,
              border-color 0.5s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.testimonial-quote {
  position: absolute;
  top: -10px;
  left: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 7rem;
  font-style: italic;
  color: var(--gold);
  opacity: 0.18;
  line-height: 1;
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(13, 42, 31, 0.10);
  border-color: rgba(184, 151, 58, 0.4);
}

.testimonial-card:hover .testimonial-quote {
  opacity: 0.35;
  transform: translateY(-4px);
}

.testimonial-stars {
  color: #F4B400;
  font-size: 0.95rem;
  letter-spacing: 3px;
  margin-bottom: 20px;
  display: block;
}

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--dark-green);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.2px;
  padding-bottom: 28px;
}

.testimonial-divider {
  width: 28px;
  height: 1px;
  background: var(--gold);
  margin-top: auto;
  margin-bottom: 18px;
  opacity: 0.6;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, #d4b76b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(184, 151, 58, 0.25);
}

.testimonial-info strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark-green);
  letter-spacing: 0.3px;
  margin-bottom: 2px;
}

.testimonial-info span {
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.testimonials-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 56px;
  padding: 13px 30px;
  background: transparent;
  border: 1px solid var(--gold);
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: background 0.35s ease, color 0.35s ease, transform 0.25s ease;
}

.testimonials-cta svg {
  width: 14px;
  height: 14px;
  transition: transform 0.35s ease;
}

.testimonials-cta:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

.testimonials-cta:hover svg {
  transform: translateX(3px);
}

/* ─── ENDEREÇO & MAPA ─── */
.address-section {
  background: var(--light-gray);
}

.address-header {
  padding: 60px 60px 0;
  text-align: center;
}

.address-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--dark-green);
  letter-spacing: 6px;
  text-transform: uppercase;
}

.address-title span {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.address-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.address-line svg {
  color: #e53935;
  flex-shrink: 0;
}

.map-container {
  margin-top: 30px;
  width: 100%;
  height: 400px;
  position: relative;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ─── RODAPÉ (FOOTER) ─── */
footer {
  background: #F7F4F0;
  color: #8B7D72;
  padding: 60px 60px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 48px;
  margin-bottom: 40px;
  align-items: start;
}

footer h4 {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #8B7D72;
  opacity: 0.7;
  margin-bottom: 18px;
}

.footer-about {
  text-align: left;
}

.footer-about p {
  font-size: 0.78rem;
  line-height: 1.85;
  color: #8B7D72;
}

.footer-specialties {
  text-align: left;
}

.footer-specialties ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-specialties ul li {
  font-size: 0.78rem;
  line-height: 1.5;
  color: #8B7D72;
  margin-bottom: 10px;
}

.footer-contact {
  text-align: center;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.8rem;
  color: #8B7D72;
}

.footer-contact-item svg {
  color: #C4A882;
  flex-shrink: 0;
}

.footer-social {
  text-align: right;
}

.social-icons {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}

.social-icon {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(139,125,114,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8B7D72;
  text-decoration: none;
  transition: all 0.2s;
}

.social-icon:hover {
  border-color: #C4A882;
  color: #C4A882;
}

.footer-bottom {
  border-top: 1px solid rgba(139, 125, 114, 0.2);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.68rem;
  color: rgba(139, 125, 114, 0.6);
  letter-spacing: 0.5px;
}

/* WhatsApp Floating Button */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  text-decoration: none;
  padding: 12px 20px 12px 14px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-fab:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-fab svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* ─── PÁGINA: MINHA HISTÓRIA ─── */
.minha-historia-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, var(--cream) 100%);
  padding-top: 94px;
}

.minha-historia-hero::before {
  content: '';
  position: absolute;
  top: -120px;
  left: -120px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(184, 151, 58, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 4rem 4rem 6rem;
  position: relative;
  z-index: 2;
  animation: fadeUp 1s ease both;
}

.hero-left-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.6rem;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-left-eyebrow::before {
  content: '';
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--gold);
}

.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  line-height: 1.05;
  color: var(--text-dark);
  margin-bottom: 2rem;
  letter-spacing: -0.5px;
}

.hero-h1 .lead {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.22em;
  font-weight: 400;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.hero-h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}

.hero-divider {
  width: 80px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 2rem;
}

.hero-text {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 1.4rem;
  letter-spacing: 0.2px;
}

.hero-text.lead-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 1.8rem;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid var(--gold);
  padding: 13px 30px;
  border-radius: 50px;
  transition: background 0.35s ease, color 0.35s ease, transform 0.25s ease;
}

.hero-cta svg {
  width: 14px;
  height: 14px;
  transition: transform 0.35s ease;
}

.hero-cta:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

.hero-cta:hover svg { transform: translateX(3px); }

.hero-cta.subtle {
  border: none;
  padding: 13px 0;
  color: var(--text-dark);
}

.hero-cta.subtle:hover {
  background: transparent;
  color: var(--gold);
  transform: none;
}

.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 4rem;
  animation: fadeIn 1.2s ease both;
}

.hero-img-frame {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4 / 5;
}

.hero-img-frame::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 22px;
  right: -22px;
  bottom: -22px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  z-index: 0;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-img-frame:hover::before {
  transform: translate(6px, 6px);
}

.hero-img-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 4px;
  filter: sepia(8%) brightness(0.97) contrast(1.04) saturate(0.92);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-img-frame:hover img { transform: scale(1.03); }

.hero-badge {
  position: absolute;
  bottom: 2rem;
  left: -2.2rem;
  z-index: 10;
  background: #0a0a0a;
  color: var(--cream);
  padding: 1.3rem 1.8rem;
  border-radius: 8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  text-align: center;
  line-height: 1.5;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  border-left: 3px solid var(--gold);
}

.hero-badge strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 4px;
}

.hero-badge-crbm {
  display: block;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.85;
}

.story {
  padding: 120px 60px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
  position: relative;
  background: var(--white);
  max-width: 1400px;
  margin: 0 auto;
}

.story-label {
  position: sticky;
  top: 130px;
}

.story-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 1.25;
  color: var(--text-dark);
  letter-spacing: -0.3px;
}

.story-h2 strong {
  color: var(--gold);
  font-weight: 600;
}

.story-content p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  line-height: 2;
  color: var(--text-muted);
  margin-bottom: 1.6rem;
  letter-spacing: 0.2px;
}

.story-content p.story-highlight {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-dark);
  padding: 8px 0 8px 24px;
  border-left: 2px solid var(--gold);
  margin: 2rem 0;
}

.story-signature {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(184, 151, 58, 0.25);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-dark);
  letter-spacing: 0.3px;
}

.story-signature::before {
  content: '— ';
  color: var(--gold);
}

.timeline-section {
  background: var(--cream);
  padding: 110px 60px;
  position: relative;
  overflow: hidden;
}

.timeline-section::before {
  content: '';
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.timeline-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 70px;
}

.timeline-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.3rem;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: -0.3px;
  line-height: 1.25;
}

.timeline-header h2 strong {
  color: var(--gold);
  font-weight: 600;
}

.timeline-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  position: relative;
}

.timeline-grid::before {
  content: '';
  position: absolute;
  top: 74px;
  left: 16%;
  right: 16%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(184, 151, 58, 0.35) 15%,
    rgba(184, 151, 58, 0.35) 85%,
    transparent
  );
  z-index: 0;
}

.timeline-item {
  background: var(--white);
  border-radius: 18px;
  padding: 36px 28px 32px;
  text-align: center;
  position: relative;
  border: 1px solid rgba(184, 151, 58, 0.18);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.5s ease,
              border-color 0.5s ease;
  z-index: 1;
}

.timeline-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
  border-color: rgba(184, 151, 58, 0.4);
}

.timeline-year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 2px;
  margin: 0 auto 22px;
  box-shadow: 0 4px 16px rgba(184, 151, 58, 0.12);
  transition: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.timeline-item:hover .timeline-year {
  background: var(--gold);
  color: #fff;
  transform: scale(1.06);
  box-shadow: 0 8px 24px rgba(184, 151, 58, 0.35);
}

.timeline-divider {
  width: 24px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 16px;
  opacity: 0.6;
}

.timeline-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.35;
  margin-bottom: 14px;
  letter-spacing: 0.2px;
}

.timeline-desc {
  font-size: 0.78rem;
  line-height: 1.65;
  color: var(--text-muted);
  letter-spacing: 0.2px;
}

.pillars-section {
  background: var(--white);
  padding: 120px 60px;
  position: relative;
  overflow: hidden;
}

.pillars-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(184, 151, 58, 0.10);
  border-radius: 50%;
  pointer-events: none;
}

.pillars-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
  position: relative;
  z-index: 2;
}

.pillars-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: -0.3px;
  line-height: 1.25;
  margin-top: 14px;
}

.pillars-header h2 strong {
  color: var(--gold);
  font-weight: 600;
}

.pillars-intro {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-top: 18px;
}

.pillars-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  position: relative;
  z-index: 2;
}

.pillar-card {
  background: var(--cream);
  padding: 44px 32px 36px;
  text-align: center;
  border-radius: 18px;
  position: relative;
  border-top: 2px solid var(--gold);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.5s ease,
              background 0.5s ease;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 70%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(184, 151, 58, 0.06) 40%,
    rgba(184, 151, 58, 0.14) 50%,
    rgba(184, 151, 58, 0.06) 60%,
    transparent 100%
  );
  transition: left 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
  z-index: 0;
}

.pillar-card:hover::before { left: 130%; }

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
  background: #fdfcf8;
}

.pillar-card > * { position: relative; z-index: 2; }

.pillar-roman {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.85rem;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 14px;
  opacity: 0.8;
}

.pillar-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  transition: background 0.4s ease, color 0.4s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pillar-card:hover .pillar-icon {
  background: var(--gold);
  color: #fff;
  transform: scale(1.08);
}

.pillar-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}

.pillar-desc {
  font-size: 0.82rem;
  line-height: 1.8;
  color: var(--text-muted);
  letter-spacing: 0.2px;
}

.quote-band {
  background: #0a0a0a;
  padding: 110px 60px;
  text-align: center;
  position: relative;
}

.quote-band-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.quote-band-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  line-height: 1.5;
  color: var(--cream);
  margin-bottom: 24px;
  font-weight: 300;
}

.quote-band-quote strong {
  font-weight: 500;
  color: var(--gold);
}

.quote-band-author {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── PÁGINA INDIVIDUAL: TRATAMENTO ─── */
.treatment-hero {
  position: relative;
  height: 380px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--cream);
  overflow: hidden;
}

.treatment-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 70% at 20% 50%, rgba(184,151,58,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 4rem 2.5rem 6rem;
  position: relative;
  z-index: 2;
  animation: fadeUp 1s ease both;
}

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 500;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1.1;
  color: var(--dark-green);
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.hero-title strong {
  color: var(--gold);
  font-weight: 500;
  font-style: italic;
}

.hero-description {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-mid);
  max-width: 460px;
  margin-bottom: 24px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: #fff;
  padding: 14px 38px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  align-self: flex-start;
  box-shadow: 0 4px 16px rgba(184,151,58,0.25);
}

.hero-cta:hover {
  background: var(--dark-green);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13,42,31,0.2);
}

.hero-image-wrapper {
  position: relative;
  overflow: hidden;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.95);
}

.hero-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--cream) 0%, transparent 18%);
  pointer-events: none;
}

.section-block {
  padding: 100px 60px;
  text-align: center;
  position: relative;
}

.section-block.bg-cream { background: var(--cream); }
.section-block.bg-white { background: var(--white); }
.section-block.bg-light { background: var(--light-gray); }

.section-divider {
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 36px;
}

.section-text {
  font-size: 0.95rem;
  line-height: 2;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 40px;
}

.banner-cta {
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--mid-green) 100%);
  padding: 70px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.banner-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 60% at 80% 50%, rgba(184,151,58,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 30% 50% at 20% 80%, rgba(184,151,58,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.banner-cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
  max-width: 700px;
  margin: 0 auto 30px;
  position: relative;
  z-index: 2;
}

/* ─── MEDIA QUERIES (RESPONSIVIDADE COMPLETA) ─── */
@media (max-width: 960px) {
  /* Why Container */
  .why-container {
    grid-template-columns: 1fr;
    gap: 80px;
  }
  .why-visual {
    max-width: 440px;
    margin: 0 auto;
  }
  .why-content .section-title,
  .why-content .section-eyebrow,
  .why-intro {
    text-align: center;
  }
  .why-divider {
    justify-content: center;
  }

  /* Minha História */
  .minha-historia-hero {
    grid-template-columns: 1fr;
  }
  .hero-left {
    padding: 6rem 2rem 3rem;
  }
  .hero-right {
    padding: 2rem;
  }
  .hero-badge {
    left: 2rem;
    bottom: -1rem;
  }
  .story {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 70px 24px;
  }
  .story-label {
    position: relative;
    top: 0;
  }
}

@media (max-width: 768px) {
  /* Header */
  header {
    padding: 14px 20px;
    position: relative;
  }
  nav a {
    display: none;
  }
  nav {
    gap: 16px;
  }
  .nav-divider {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  /* Hero */
  .hero {
    height: 60vh;
    min-height: 340px;
  }

  /* Sections */
  .content-section {
    padding: 60px 24px;
  }
  .section-title {
    font-size: 1.7rem;
  }

  /* Treatments & Tech */
  .treatments-section {
    padding: 70px 24px 80px;
  }
  .treatments-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px 16px;
  }
  .t-card {
    width: 100%;
    height: 280px;
  }
  .technologies-section {
    padding: 80px 32px;
  }
  .tech-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  /* Protocols */
  .protocols-section {
    padding: 70px 24px;
  }
  .protocols-header {
    margin-bottom: 50px;
  }
  .protocols-timeline::before {
    left: 27px;
  }
  .protocol-item {
    grid-template-columns: 56px 1fr;
    gap: 18px;
    margin-bottom: 28px;
  }
  .protocol-number {
    width: 56px;
    height: 56px;
    font-size: 1.15rem;
  }
  .protocol-card {
    padding: 26px 24px;
  }
  .protocol-card::before {
    top: 22px;
  }
  .protocol-name {
    font-size: 1.3rem;
  }
  .protocols-section::before,
  .protocols-section::after {
    display: none;
  }

  /* Video */
  .video-intro-section {
    padding: 70px 20px 60px;
  }
  .video-intro-section .section-title {
    font-size: 1.9rem;
  }
  .video-intro-subtitle {
    font-size: 0.88rem;
    margin-bottom: 36px;
  }
  .video-intro-frame {
    max-width: 320px;
    border-radius: 14px;
  }
  .video-intro-sound {
    width: 40px;
    height: 40px;
    bottom: 14px;
    right: 14px;
  }

  /* Address */
  .address-header {
    padding: 40px 24px 0;
  }
  .address-title {
    font-size: 1.3rem;
    letter-spacing: 3px;
  }
  .address-line {
    font-size: 0.72rem;
    text-align: center;
    flex-wrap: wrap;
    justify-content: center;
  }
  .map-container {
    height: 260px;
  }

  /* Testimonials */
  .testimonials-section {
    padding: 70px 24px;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .google-rating {
    flex-direction: column;
    gap: 18px;
    padding: 22px 28px;
    border-radius: 24px;
    max-width: 100%;
  }
  .google-rating-logo {
    padding-right: 0;
    padding-bottom: 16px;
    border-right: none;
    border-bottom: 1px solid rgba(184, 151, 58, 0.25);
    width: 100%;
    justify-content: center;
  }
  .google-rating-score-block {
    gap: 14px;
  }
  .google-rating .score {
    font-size: 2.2rem;
  }

  /* Address/Map */
  .address-section {
    padding-top: 20px;
  }

  /* Footer */
  footer {
    padding: 40px 24px 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-contact {
    text-align: left;
  }
  .footer-contact-item {
    justify-content: flex-start;
  }
  .footer-social {
    text-align: left;
  }
  .social-icons {
    justify-content: flex-start;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  /* WhatsApp FAB */
  .whatsapp-fab {
    padding: 10px 14px;
    font-size: 0.65rem;
    bottom: 16px;
    right: 16px;
  }

  /* Timeline page */
  .timeline-section {
    padding: 70px 24px;
  }
  .timeline-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .timeline-grid::before {
    display: none;
  }
  .pillars-section {
    padding: 70px 24px;
  }
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .quote-band {
    padding: 70px 24px;
  }

  /* Individual Treatment Page */
  .treatment-hero {
    grid-template-columns: 1fr;
    height: auto;
  }
  .hero-content {
    padding: 4rem 24px 2rem;
  }
  .hero-image-wrapper {
    height: 250px;
  }
  .hero-image-wrapper::after {
    background: linear-gradient(0deg, var(--cream) 0%, transparent 18%);
  }
  .section-block {
    padding: 60px 24px;
  }
  .section-title {
    font-size: 1.9rem;
  }
  .banner-cta {
    padding: 50px 24px;
  }
  .banner-cta-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 600px) {
  .why-section {
    padding: 70px 24px;
  }
  .why-container {
    gap: 60px;
  }
  .why-content .section-title {
    font-size: 1.7rem;
  }
  .why-reasons {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .why-visual::before {
    top: 16px;
    left: 16px;
    right: -16px;
    bottom: -16px;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 50vh;
  }
  .section-title {
    font-size: 1.4rem;
  }
  .address-title {
    font-size: 1.1rem;
  }
  .testimonial-card {
    padding: 48px 24px 28px;
  }
  .testimonial-text {
    font-size: 0.95rem;
  }
}
