/* ==========================================================================
   ESSENZA Estética & Bem-Estar - Global Stylesheet
   Luxury Organic Spa & Lookbook Editorial Theme
   100% Fully Mobile Responsive & Hardened
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
  /* Organic Nude & Luxury Spa Color Tokens */
  --color-silk-nude: #FAF5EF;
  --color-sand-blush: #F3E8DF;
  --color-sand-light: #F7EFE7;
  --color-rose-gold: #D4A373;
  --color-rose-gold-light: #E8C5A5;
  --color-terracotta: #C68B59;
  --color-emerald-deep: #1F382B;
  --color-emerald-dark: #13241B;
  --color-charcoal: #2D2825;
  --color-charcoal-muted: #6D645E;
  --color-white: #FFFFFF;
  --color-border-gold: rgba(212, 163, 115, 0.35);
  --color-border-soft: #EADED2;
  --color-whatsapp: #25D366;
  --color-whatsapp-hover: #1EBE5A;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --radius-arch: 240px 240px 32px 32px;
  --radius-full: 9999px;

  --shadow-subtle: 0 10px 30px rgba(45, 40, 37, 0.04);
  --shadow-card: 0 20px 45px -15px rgba(45, 40, 37, 0.08);
  --shadow-hover: 0 30px 60px -15px rgba(31, 56, 43, 0.16);
  --shadow-floating: 0 15px 35px rgba(31, 56, 43, 0.22);

  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --max-width: 1240px;
  --header-height: 88px;
}

/* Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  background-color: var(--color-silk-nude);
  color: var(--color-charcoal);
  font-family: var(--font-body);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

ul, ol {
  list-style: none;
}

button, input {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  min-width: 0;
  box-sizing: border-box;
}

/* ACCESSIBILITY: Focus Visible Styles */
:focus-visible {
  outline: 2px solid var(--color-terracotta);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.btn:focus-visible,
.whatsapp-float-btn:focus-visible {
  outline-offset: 4px;
}

/* ==========================================================================
   0. INTRO PRELOADER & CURTAIN ANIMATION
   ========================================================================== */
.intro-preloader {
  position: fixed;
  inset: 0;
  background-color: var(--color-emerald-dark);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 1.1s cubic-bezier(0.85, 0, 0.15, 1);
  pointer-events: all;
  will-change: transform;
  width: 100vw;
  height: 100vh;
}

.intro-preloader.loaded {
  transform: translateY(-100%);
  pointer-events: none;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-silk-nude);
  padding: 1.5rem;
  max-width: 90vw;
  width: 100%;
}

.preloader-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.preloader-logo {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6.5vw, 3.8rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--color-silk-nude);
  text-transform: uppercase;
  line-height: 1.1;
  text-align: center;
  animation: preloaderPulse 2.2s ease-in-out infinite alternate;
}

@keyframes preloaderPulse {
  from { opacity: 0.85; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1.02); }
}

.preloader-subtitle {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(0.72rem, 2.2vw, 0.85rem);
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--color-rose-gold);
  text-transform: uppercase;
  margin-top: 0.65rem;
  text-align: center;
  white-space: nowrap;
}

.preloader-progress-bar {
  width: min(240px, 80vw);
  height: 2px;
  background: rgba(212, 163, 115, 0.2);
  border-radius: 2px;
  margin-top: 2rem;
  overflow: hidden;
  position: relative;
}

.preloader-progress-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--color-terracotta), var(--color-rose-gold));
  transition: width 0.1s linear;
}

.preloader-counter {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-rose-gold-light);
  margin-top: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
}

/* ==========================================================================
   EDITORIAL TYPOGRAPHY & PILLS
   ========================================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.12;
  color: var(--color-charcoal);
  min-width: 0;
  overflow-wrap: break-word;
}

h1 i, h2 i, h3 i {
  font-style: italic;
  font-weight: 400;
  color: var(--color-terracotta);
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background-color: var(--color-sand-blush);
  border: 1px solid var(--color-border-gold);
  color: var(--color-terracotta);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1.15rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
  max-width: 100%;
  text-align: center;
  line-height: 1.35;
}

.section-title {
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-charcoal-muted);
  max-width: 620px;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.95rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition-smooth);
  box-sizing: border-box;
}

.btn-emerald {
  background-color: var(--color-emerald-deep);
  color: var(--color-white);
  box-shadow: var(--shadow-subtle);
}

.btn-emerald:hover {
  background-color: var(--color-emerald-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.btn-rose-gold {
  background-color: var(--color-rose-gold);
  color: var(--color-white);
}

.btn-rose-gold:hover {
  background-color: var(--color-terracotta);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(212, 163, 115, 0.35);
}

.btn-outline-gold {
  background-color: transparent;
  color: var(--color-charcoal);
  border: 1.5px solid var(--color-rose-gold);
}

.btn-outline-gold:hover {
  background-color: var(--color-sand-blush);
  transform: translateY(-2px);
}

/* ==========================================================================
   1. STICKY HEADER & MOBILE NAVIGATION
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition-smooth);
  background-color: rgba(250, 245, 239, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border-gold);
}

.header.scrolled {
  height: 74px;
  background-color: rgba(250, 245, 239, 0.96);
  box-shadow: 0 8px 30px rgba(45, 40, 37, 0.06);
}

.header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
}

.brand-logo {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-charcoal);
  white-space: nowrap;
}

.brand-subtitle {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  margin-top: -3px;
  white-space: nowrap;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.85rem;
}

.nav-link {
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--color-charcoal);
  position: relative;
  padding: 0.25rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-terracotta);
  transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  z-index: 1002;
  flex-shrink: 0;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
}

.hamburger-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-charcoal);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

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

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(31, 56, 43, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 340px;
  height: 100vh;
  background-color: var(--color-silk-nude);
  z-index: 999;
  padding: 5.5rem 1.75rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
}

.mobile-drawer.active {
  right: 0;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  color: var(--color-charcoal);
  border-bottom: 1px solid var(--color-sand-blush);
  padding-bottom: 0.65rem;
}

/* ==========================================================================
   2. HERO LOOKBOOK EDITORIAL (CENTRALIZED MAGAZINE LAYOUT)
   ========================================================================== */
.hero-lookbook-section {
  padding-top: calc(var(--header-height) + 2.5rem);
  padding-bottom: 5.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.hero-lookbook-header {
  max-width: 840px;
  margin: 0 auto 2.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-rating-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background-color: var(--color-white);
  padding: 0.4rem 1.15rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border-gold);
  box-shadow: var(--shadow-subtle);
  margin-bottom: 1.15rem;
  max-width: 100%;
}

.hero-rating-stars {
  color: #D4A373;
  font-size: 0.95rem;
  letter-spacing: 2px;
}

.hero-rating-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-charcoal);
}

.hero-lookbook-title {
  font-size: clamp(2.1rem, 5.2vw, 4.4rem);
  line-height: 1.08;
  margin-bottom: 1.25rem;
  max-width: 100%;
  overflow-wrap: break-word;
}

.hero-lookbook-subtitle {
  font-size: 1.1rem;
  color: var(--color-charcoal-muted);
  line-height: 1.7;
  max-width: 680px;
}

/* 3-Photo Layered Lookbook Collage Centerpiece */
.hero-lookbook-collage {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 1050px;
  width: 100%;
  margin: 0 auto 3rem;
  position: relative;
}

.collage-card {
  position: relative;
  border-radius: var(--radius-arch);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 4px solid var(--color-white);
  transition: var(--transition-smooth);
}

.collage-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.collage-card:hover img {
  transform: scale(1.05);
}

/* Main Central High Arch Photo */
.collage-card-main {
  width: 380px;
  height: 480px;
  z-index: 2;
  box-shadow: var(--shadow-hover);
}

/* Left & Right Side Flanking Photo Cards */
.collage-card-left,
.collage-card-right {
  width: 240px;
  height: 340px;
  border-radius: 120px 120px 24px 24px;
  opacity: 0.92;
  z-index: 1;
}

.collage-card-left { transform: rotate(-3deg) translateY(20px); }
.collage-card-right { transform: rotate(3deg) translateY(20px); }

.collage-card-left:hover {
  transform: rotate(0deg) translateY(0) scale(1.03);
  opacity: 1;
  z-index: 3;
}

.collage-card-right:hover {
  transform: rotate(0deg) translateY(0) scale(1.03);
  opacity: 1;
  z-index: 3;
}

/* Micro Badges inside Collage Cards */
.collage-card-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-gold);
  text-align: left;
}

.collage-card-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-emerald-deep);
  line-height: 1.1;
}

.collage-card-badge span {
  font-size: 0.75rem;
  color: var(--color-charcoal-muted);
}

/* Central Action Bar */
.hero-lookbook-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   3. ORGANIC MARQUEE TICKER
   ========================================================================== */
.trust-marquee-section {
  background-color: var(--color-emerald-deep);
  color: var(--color-silk-nude);
  padding: 1.5rem 0;
  overflow: hidden;
  width: 100%;
  border-top: 1px solid var(--color-border-gold);
  border-bottom: 1px solid var(--color-border-gold);
}

.trust-marquee-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: center;
  width: 100%;
}

.marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--color-rose-gold-light);
  text-align: center;
}

.marquee-icon {
  color: var(--color-rose-gold);
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* ==========================================================================
   4. SOBRE A ESSENZA
   ========================================================================== */
.about-redesign-section {
  padding: 6.5rem 0;
}

.about-redesign-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4.5rem;
  align-items: center;
}

.about-media-frame {
  position: relative;
}

.about-portrait-card {
  border-radius: var(--radius-arch);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 4px solid var(--color-white);
}

.about-portrait-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.about-quote-pill {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: var(--color-sand-blush);
  border: 1px solid var(--color-border-gold);
  padding: 1.25rem 1.65rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-subtle);
  max-width: 260px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--color-emerald-deep);
}

.about-content-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-body-text {
  color: var(--color-charcoal-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

.about-body-text p + p {
  margin-top: 1rem;
}

.about-values-list {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border-soft);
  width: 100%;
}

.about-value-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-terracotta);
  line-height: 1;
}

.about-value-item span {
  font-size: 0.85rem;
  color: var(--color-charcoal-muted);
}

/* ==========================================================================
   5. SERVIÇOS
   ========================================================================== */
.services-redesign-section {
  padding: 6.5rem 0;
  background-color: var(--color-sand-blush);
}

.services-redesign-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.25rem;
}

.service-card-redesign {
  background-color: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border-gold);
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.service-card-redesign:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-rose-gold);
}

.service-card-media {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}

.service-card-redesign:hover .service-card-media img {
  transform: scale(1.07);
}

.service-card-tag {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background-color: rgba(31, 56, 43, 0.9);
  color: var(--color-white);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
}

.service-card-content {
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-heading {
  font-size: 2rem;
  color: var(--color-emerald-deep);
  margin-bottom: 0.75rem;
}

.service-card-description {
  font-size: 0.975rem;
  color: var(--color-charcoal-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.service-procedures-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  margin-top: auto;
}

.procedure-badge {
  background-color: var(--color-silk-nude);
  border: 1px solid var(--color-border-soft);
  color: var(--color-charcoal);
  font-size: 0.825rem;
  font-weight: 500;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
}

.procedure-badge::before {
  content: '✦ ';
  color: var(--color-terracotta);
}

.service-card-action {
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border-soft);
}

/* ==========================================================================
   6. DIFERENCIAIS
   ========================================================================== */
.differentials-redesign-section {
  padding: 6.5rem 0;
}

.differentials-redesign-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.diff-card-item {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid var(--color-border-gold);
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
  position: relative;
  min-width: 0;
}

.diff-card-item:hover {
  transform: translateY(-5px);
  border-color: var(--color-terracotta);
  box-shadow: var(--shadow-card);
}

.diff-card-num {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--color-rose-gold);
  line-height: 1;
  margin-bottom: 1rem;
}

.diff-card-title {
  font-size: 1.5rem;
  color: var(--color-emerald-deep);
  margin-bottom: 0.75rem;
}

.diff-card-text {
  font-size: 0.95rem;
  color: var(--color-charcoal-muted);
  line-height: 1.6;
}

/* ==========================================================================
   7. COMO FUNCIONA O AGENDAMENTO (TIMELINE)
   ========================================================================== */
.schedule-redesign-section {
  padding: 6.5rem 0;
  background-color: var(--color-sand-blush);
}

.timeline-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
  position: relative;
}

.timeline-step-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.5rem;
  text-align: center;
  border: 1px solid var(--color-border-gold);
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
}

.timeline-step-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-terracotta);
}

.timeline-step-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--color-emerald-deep);
  color: var(--color-rose-gold-light);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.timeline-step-title {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  color: var(--color-charcoal);
}

.timeline-step-desc {
  font-size: 0.9rem;
  color: var(--color-charcoal-muted);
  line-height: 1.55;
}

/* ==========================================================================
   8. CTA BANNER
   ========================================================================== */
.cta-redesign-section {
  padding: 5.5rem 0;
}

.cta-redesign-banner {
  background: linear-gradient(135deg, #1F382B 0%, #13241B 100%);
  border-radius: var(--radius-xl);
  padding: 5rem 3rem;
  text-align: center;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--color-border-gold);
}

.cta-redesign-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -20%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(212, 163, 115, 0.2) 0%, rgba(31, 56, 43, 0) 70%);
  pointer-events: none;
}

.cta-redesign-banner .eyebrow-pill {
  background-color: rgba(212, 163, 115, 0.15);
  color: var(--color-rose-gold-light);
  border-color: rgba(212, 163, 115, 0.3);
}

.cta-redesign-banner .section-title {
  color: var(--color-white);
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  margin-bottom: 1rem;
}

.cta-redesign-banner .section-subtitle {
  color: var(--color-sand-blush);
  margin-bottom: 2.5rem;
}

/* ==========================================================================
   9. AVALIAÇÕES
   ========================================================================== */
.testimonials-redesign-section {
  padding: 6.5rem 0;
}

.testimonials-redesign-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.testimonial-redesign-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid var(--color-border-gold);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: var(--transition-smooth);
}

.testimonial-redesign-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-terracotta);
}

.testimonial-stars-row {
  color: #D4A373;
  margin-bottom: 1.25rem;
  font-size: 1rem;
  letter-spacing: 2px;
}

.testimonial-quote-text {
  font-size: 1rem;
  color: var(--color-charcoal);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author-tag {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-terracotta);
}

.testimonials-disclaimer-note {
  text-align: center;
  font-size: 0.825rem;
  color: var(--color-charcoal-muted);
  font-style: italic;
}

/* ==========================================================================
   10. FAQ ACCORDION
   ========================================================================== */
.faq-redesign-section {
  padding: 6.5rem 0;
  background-color: var(--color-sand-blush);
}

.faq-wrapper {
  max-width: 820px;
  margin: 0 auto;
}

.faq-accordion-item {
  background-color: var(--color-white);
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-accordion-item.active {
  border-color: var(--color-terracotta);
  box-shadow: var(--shadow-subtle);
}

.faq-accordion-header {
  width: 100%;
  padding: 1.35rem 1.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-charcoal);
  gap: 1rem;
}

.faq-accordion-header:hover {
  color: var(--color-emerald-deep);
}

.faq-toggle-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--color-sand-blush);
  color: var(--color-emerald-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.faq-accordion-item.active .faq-toggle-icon {
  transform: rotate(45deg);
  background-color: var(--color-emerald-deep);
  color: var(--color-white);
}

.faq-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
}

.faq-content-inner {
  padding: 0 1.85rem 1.5rem 1.85rem;
  font-size: 0.975rem;
  color: var(--color-charcoal-muted);
  line-height: 1.7;
  border-top: 1px dashed var(--color-border-soft);
  padding-top: 1rem;
}

/* ==========================================================================
   11. CONTATO & LOCALIZAÇÃO
   ========================================================================== */
.contact-redesign-section {
  padding: 6.5rem 0;
}

.contact-redesign-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact-title-brand {
  font-size: 2.35rem;
  color: var(--color-emerald-deep);
  margin-bottom: 1.75rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.25rem;
}

.contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: 1.15rem;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-sand-blush);
  color: var(--color-emerald-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-terracotta);
  margin-bottom: 0.25rem;
}

.contact-info-text p {
  font-size: 0.975rem;
  color: var(--color-charcoal-muted);
  line-height: 1.55;
}

.map-frame-card {
  background-color: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  border: 1px solid var(--color-border-gold);
  box-shadow: var(--shadow-card);
}

.map-styled-container {
  width: 100%;
  height: 380px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #1F382B 0%, #13241B 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  text-align: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.map-styled-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(212, 163, 115, 0.3) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.6;
}

.map-pin-badge {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: var(--color-rose-gold);
  color: var(--color-emerald-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 30px rgba(212, 163, 115, 0.4);
}

.map-location-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  color: var(--color-rose-gold-light);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.map-location-address {
  font-size: 0.95rem;
  color: var(--color-sand-blush);
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   12. FOOTER
   ========================================================================== */
.footer-redesign {
  background-color: var(--color-emerald-dark);
  color: var(--color-silk-nude);
  padding: 4.5rem 0 2.5rem;
  border-top: 1px solid var(--color-border-gold);
}

.footer-main-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(250, 245, 239, 0.1);
  flex-wrap: wrap;
}

.footer-brand-box {
  max-width: 320px;
}

.footer-brand-box .brand-name {
  color: var(--color-white);
}

.footer-brand-box .brand-subtitle {
  color: var(--color-rose-gold-light);
}

.footer-description {
  font-size: 0.925rem;
  color: var(--color-sand-blush);
  margin-top: 1rem;
  line-height: 1.65;
}

.footer-nav-columns {
  display: flex;
  gap: 3.5rem;
  flex-wrap: wrap;
}

.footer-col-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-rose-gold-light);
  margin-bottom: 1.25rem;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-list a {
  font-size: 0.9rem;
  color: var(--color-sand-blush);
}

.footer-links-list a:hover {
  color: var(--color-rose-gold);
}

.footer-bottom-bar {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.825rem;
  color: rgba(250, 245, 239, 0.6);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-demo-pill {
  background-color: rgba(212, 163, 115, 0.15);
  border: 1px solid rgba(212, 163, 115, 0.3);
  color: var(--color-rose-gold-light);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
}

/* ==========================================================================
   13. FLOATING WHATSAPP BUTTON WITH TOOLTIP
   ========================================================================== */
.whatsapp-float-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 990;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.whatsapp-tooltip {
  background-color: var(--color-white);
  color: var(--color-charcoal);
  font-size: 0.825rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border-gold);
  white-space: nowrap;
  animation: fadeInTooltip 0.6s ease forwards;
}

@keyframes fadeInTooltip {
  from { opacity: 0; transform: translateX(10px); }
  to { opacity: 1; transform: translateX(0); }
}

.whatsapp-float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--color-whatsapp);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  transition: var(--transition-smooth);
}

.whatsapp-float-btn:hover {
  transform: scale(1.08) translateY(-2px);
  background-color: var(--color-whatsapp-hover);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
}

.whatsapp-float-btn svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

/* Scroll reveal transition */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ==========================================================================
   14. COMPREHENSIVE RESPONSIVE DESIGN & MOBILE BREAKPOINTS
   ========================================================================== */

/* Tablet & Intermediate Viewports (<= 1024px) */
@media (max-width: 1024px) {
  :root {
    --header-height: 80px;
  }

  .hero-lookbook-collage {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

  .collage-card-main {
    width: 100%;
    max-width: 340px;
    height: 420px;
  }

  .collage-card-left,
  .collage-card-right {
    width: 100%;
    max-width: 280px;
    height: 240px;
    transform: none !important;
  }

  .about-redesign-grid,
  .contact-redesign-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .differentials-redesign-grid,
  .timeline-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-marquee-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

/* Mobile Devices (<= 768px) */
@media (max-width: 768px) {
  :root {
    --header-height: 72px;
  }

  .container {
    padding: 0 1.25rem;
  }

  /* Header adjustments */
  .nav-desktop { display: none; }
  .hamburger-btn { display: flex; }
  
  .brand-name {
    font-size: 1.5rem;
    letter-spacing: 0.12em;
  }
  
  .brand-subtitle {
    font-size: 0.58rem;
    letter-spacing: 0.2em;
  }

  /* Hero Section */
  .hero-lookbook-section {
    padding-top: calc(var(--header-height) + 1.75rem);
    padding-bottom: 4rem;
  }

  .hero-lookbook-header {
    margin-bottom: 2rem;
  }

  .hero-lookbook-title {
    font-size: clamp(1.85rem, 6.5vw, 2.5rem);
    line-height: 1.15;
    margin-bottom: 1rem;
  }

  .hero-lookbook-subtitle {
    font-size: 1rem;
    line-height: 1.6;
  }

  .eyebrow-pill {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    padding: 0.35rem 0.9rem;
    max-width: 100%;
  }

  .hero-rating-pill {
    font-size: 0.8rem;
    padding: 0.35rem 0.9rem;
  }

  .hero-rating-stars {
    font-size: 0.85rem;
    letter-spacing: 1px;
  }

  /* Collage Cards on Mobile */
  .hero-lookbook-collage {
    gap: 1.25rem;
    margin-bottom: 2.25rem;
  }

  .collage-card-main {
    max-width: min(320px, 92vw);
    width: 100%;
    height: 380px;
    border-radius: 160px 160px 24px 24px;
  }

  .collage-card-left,
  .collage-card-right {
    max-width: min(280px, 86vw);
    width: 100%;
    height: 200px;
    border-radius: 80px 80px 20px 20px;
  }

  /* Marquee: Stack on mobile to completely prevent overflow */
  .trust-marquee-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    text-align: center;
  }

  .marquee-item {
    font-size: 1.05rem;
    justify-content: center;
    white-space: normal;
  }

  /* Section Headings */
  .about-redesign-section,
  .services-redesign-section,
  .differentials-redesign-section,
  .schedule-redesign-section,
  .testimonials-redesign-section,
  .faq-redesign-section,
  .contact-redesign-section {
    padding: 4.5rem 0;
  }

  .section-title {
    font-size: clamp(1.85rem, 6vw, 2.5rem);
    line-height: 1.15;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  /* About adjustments */
  .about-content-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-content-block .eyebrow-pill {
    margin-left: auto;
    margin-right: auto;
  }

  .about-body-text {
    text-align: center;
  }

  .about-portrait-card img {
    height: 380px;
  }

  .about-quote-pill {
    position: relative;
    right: auto;
    bottom: auto;
    margin: -1.5rem auto 1.75rem;
    max-width: 92%;
    text-align: center;
    display: block;
  }

  .about-values-list {
    gap: 1.25rem;
    justify-content: center;
    text-align: center;
  }

  .about-value-item strong {
    font-size: 1.75rem;
  }

  .about-content-block .btn {
    align-self: center;
    margin: 0 auto;
    text-align: center;
  }

  /* Grids to Single Column */
  .services-redesign-grid,
  .differentials-redesign-grid,
  .testimonials-redesign-grid,
  .timeline-steps-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card-media {
    height: 200px;
  }

  .service-card-content {
    padding: 1.75rem 1.25rem;
  }

  .service-card-heading {
    font-size: 1.65rem;
  }

  .diff-card-item {
    padding: 2rem 1.5rem;
  }

  .diff-card-num {
    font-size: 2.25rem;
  }

  /* CTA Banner */
  .cta-redesign-section {
    padding: 3.5rem 0;
  }

  .cta-redesign-banner {
    padding: 3.5rem 1.5rem;
    border-radius: var(--radius-lg);
  }

  .cta-redesign-banner .section-title {
    font-size: clamp(1.85rem, 5.5vw, 2.6rem);
  }

  .testimonial-redesign-card {
    padding: 2rem 1.5rem;
  }

  /* FAQ Accordion */
  .faq-accordion-header {
    padding: 1.15rem 1.25rem;
    font-size: 1.15rem;
  }

  .faq-content-inner {
    padding: 0 1.25rem 1.25rem;
    font-size: 0.925rem;
  }

  /* Contact & Map */
  .contact-info-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-info-block .eyebrow-pill {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-title-brand {
    font-size: 1.95rem;
  }

  .contact-info-list {
    width: 100%;
    max-width: 360px;
    margin: 0 auto 2rem;
    text-align: left;
  }

  .contact-info-block .btn {
    align-self: center;
    margin: 0 auto;
    text-align: center;
  }

  .map-styled-container {
    height: 320px;
    padding: 1.5rem;
  }

  .map-location-title {
    font-size: 1.5rem;
  }

  /* Footer */
  .footer-redesign {
    padding: 3.5rem 0 2rem;
  }

  .footer-main-row {
    flex-direction: column;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .footer-nav-columns {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  /* Floating WhatsApp */
  .whatsapp-tooltip {
    display: none;
  }

  .whatsapp-float-container {
    bottom: 1.25rem;
    right: 1.25rem;
  }

  .whatsapp-float-btn {
    width: 54px;
    height: 54px;
  }

  .whatsapp-float-btn svg {
    width: 28px;
    height: 28px;
  }
}

/* Small SmartPhones (<= 480px) */
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .brand-name {
    font-size: 1.35rem;
    letter-spacing: 0.1em;
  }

  .brand-subtitle {
    font-size: 0.52rem;
    letter-spacing: 0.15em;
  }

  .hero-lookbook-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .hero-lookbook-actions .btn {
    width: 100%;
    padding: 0.85rem 1.25rem;
    font-size: 0.9rem;
    white-space: normal;
    text-align: center;
  }

  .collage-card-main {
    height: 340px;
  }

  .collage-card-left,
  .collage-card-right {
    height: 180px;
  }

  .about-portrait-card img {
    height: 300px;
  }

  .about-values-list {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
  }

  .about-content-block .btn,
  .contact-info-block .btn {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    text-align: center;
  }

  .preloader-logo {
    font-size: 2.1rem;
    letter-spacing: 0.18em;
  }

  .preloader-subtitle {
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    white-space: nowrap;
  }
}

/* ACCESSIBILITY: Reduced Motion Preference Fallback */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .intro-preloader {
    display: none !important;
  }
}
