/* ============================================
   DR. JAQUELINE MEIRA — ESTÉTICA AVANÇADA
   Premium Design System: Black + Gold + Rose
   ============================================ */

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

/* --- CSS Variables (Design Tokens) --- */
:root {
  /* Colors */
  --black-deep: #0a0a0a;
  --black-rich: #111111;
  --black-soft: #1a1a1a;
  --black-card: #141414;
  --gray-dark: #2a2a2a;
  --gray-medium: #555555;
  --gray-light: #999999;
  --gray-lighter: #cccccc;
  --white: #ffffff;
  --white-off: #f5f0eb;

  --gold-dark: #8b7330;
  --gold: #c9a84c;
  --gold-light: #d4b95e;
  --gold-bright: #e8d48b;
  --gold-glow: rgba(201, 168, 76, 0.15);

  --rose: #d4848c;
  --rose-soft: #e0a0a7;
  --rose-light: #f0c4c9;
  --rose-pale: #f8e0e3;
  --rose-glow: rgba(212, 132, 140, 0.15);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', 'Segoe UI', sans-serif;

  /* Spacing (8pt grid) */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  --space-5xl: 128px;

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast: 0.2s var(--ease-out-expo);
  --transition-base: 0.4s var(--ease-out-expo);
  --transition-slow: 0.7s var(--ease-out-expo);

  /* Layout */
  --max-width: 1200px;
  --header-height: 80px;
}

/* --- 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;
}

body {
  font-family: var(--font-body);
  background-color: var(--black-deep);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
  display: inline-block;
  position: relative;
}

.section-label::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-top: 8px;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: var(--space-lg);
}

.section-title em {
  font-style: italic;
  color: var(--rose);
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--gray-light);
  font-weight: 300;
  max-width: 600px;
  line-height: 1.8;
}

/* --- Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(37, 211, 102, 0.3); }
  50% { box-shadow: 0 0 35px rgba(37, 211, 102, 0.6); }
}

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

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0.05s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.12s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.19s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.26s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.33s; }
.stagger-children .reveal:nth-child(6) { transition-delay: 0.40s; }
.stagger-children .reveal:nth-child(7) { transition-delay: 0.47s; }
.stagger-children .reveal:nth-child(8) { transition-delay: 0.54s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===========================================
   HEADER / NAVIGATION
   =========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: background var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  align-items: center;
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(201, 168, 76, 0.1);
}

.header-inner {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1.1;
}

.logo-tagline {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-desktop a {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-lighter);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition-base);
}

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

.nav-desktop a:hover::after {
  width: 100%;
}

.nav-cta {
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  letter-spacing: 1.5px !important;
  color: var(--black-deep) !important;
  background: var(--gold);
  padding: 10px 24px;
  border: none;
  transition: background var(--transition-fast), transform var(--transition-fast) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--black-deep) !important;
  transform: translateY(-2px);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1100;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  transition: transform var(--transition-base), opacity var(--transition-fast);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(10, 10, 10, 0.98);
  z-index: 1050;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.nav-mobile.open {
  opacity: 1;
  pointer-events: all;
}

.nav-mobile a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  transition: color var(--transition-fast);
}

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

/* ===========================================
   HERO SECTION
   =========================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--black-deep);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* Decorative gold accent line */
.hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  right: 15%;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0.15;
}

/* Rose accent circle */
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--rose-glow), transparent 70%);
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: var(--space-4xl) var(--space-xl);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 10px 24px;
  margin-bottom: var(--space-2xl);
  animation: fadeInUp 1s var(--ease-out-expo) 0.2s both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: var(--space-lg);
  animation: fadeInUp 1s var(--ease-out-expo) 0.4s both;
}

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

.hero-title .highlight-rose {
  color: var(--rose);
  font-style: italic;
}

.hero-description {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--gray-light);
  max-width: 550px;
  margin: 0 auto var(--space-2xl);
  line-height: 1.9;
  animation: fadeInUp 1s var(--ease-out-expo) 0.6s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
  animation: fadeInUp 1s var(--ease-out-expo) 0.8s both;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold);
  color: var(--black-deep);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.3);
  background: var(--gold-light);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.3);
}

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

.btn-rose:hover {
  background: var(--rose-soft);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(212, 132, 140, 0.3);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: var(--gray-medium);
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: fadeInUp 1s var(--ease-out-expo) 1.2s both;
}

.hero-scroll .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: float 2s ease-in-out infinite;
}

/* ===========================================
   ABOUT SECTION
   =========================================== */
.about {
  padding: var(--space-5xl) var(--space-xl);
  background: var(--black-rich);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.2;
}

.about-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image-wrapper::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--gold);
  opacity: 0.3;
  z-index: 0;
}

.about-image-wrapper img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 500px;
  object-fit: cover;
  filter: grayscale(15%) contrast(1.05);
  transition: filter var(--transition-slow);
}

.about-image-wrapper:hover img {
  filter: grayscale(0%) contrast(1);
}

.about-content {
  padding: var(--space-xl) 0;
}

.about-text {
  font-size: 0.95rem;
  color: var(--gray-lighter);
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: var(--space-xl);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid var(--gray-dark);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-top: var(--space-xs);
}

/* ===========================================
   SERVICES SECTION
   =========================================== */
.services {
  padding: var(--space-5xl) var(--space-xl);
  background: var(--black-deep);
  position: relative;
}

.services-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.services-header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.service-card {
  background: var(--black-card);
  border: 1px solid rgba(201, 168, 76, 0.08);
  padding: var(--space-2xl) var(--space-xl);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--rose));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 168, 76, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: var(--space-lg);
  display: block;
}

.service-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.service-description {
  font-size: 0.85rem;
  color: var(--gray-light);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.service-link {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.service-link:hover {
  gap: var(--space-md);
  color: var(--rose);
}

/* ===========================================
   DIFFERENTIALS / FEATURES
   =========================================== */
.differentials {
  padding: var(--space-5xl) var(--space-xl);
  background: var(--black-soft);
  position: relative;
}

.differentials::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--gold-glow), transparent 70%);
  opacity: 0.4;
}

.differentials-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.differentials-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.diff-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.diff-item {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-lg);
  border-left: 2px solid var(--gray-dark);
  transition: border-color var(--transition-base);
}

.diff-item:hover {
  border-color: var(--gold);
}

.diff-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 4px;
}

.diff-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: var(--space-xs);
}

.diff-text {
  font-size: 0.85rem;
  color: var(--gray-light);
  font-weight: 300;
  line-height: 1.7;
}

/* ===========================================
   TESTIMONIALS
   =========================================== */
.testimonials {
  padding: var(--space-5xl) var(--space-xl);
  background: var(--black-deep);
  position: relative;
  overflow: hidden;
}

.testimonials-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.testimonials-header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.testimonial-card {
  background: var(--black-card);
  border: 1px solid rgba(201, 168, 76, 0.06);
  padding: var(--space-2xl);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.15;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gray-lighter);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  position: relative;
  z-index: 1;
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--rose));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
}

.testimonial-role {
  font-size: 0.7rem;
  color: var(--gray-light);
  font-weight: 400;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: var(--space-md);
}

/* ===========================================
   CTA BANNER (WhatsApp Conversion)
   =========================================== */
.cta-banner {
  padding: var(--space-4xl) var(--space-xl);
  background: linear-gradient(135deg, var(--black-rich), var(--black-soft));
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 20% 50%, var(--rose-glow), transparent 50%),
    radial-gradient(ellipse at 80% 50%, var(--gold-glow), transparent 50%);
  opacity: 0.6;
}

.cta-banner-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-banner .section-title {
  margin-bottom: var(--space-md);
}

.cta-banner .section-subtitle {
  margin: 0 auto var(--space-2xl);
  text-align: center;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

/* ===========================================
   LOCATION / MAP
   =========================================== */
.location {
  padding: var(--space-5xl) var(--space-xl);
  background: var(--black-rich);
}

.location-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.location-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.location-info {
  padding: var(--space-xl) 0;
}

.location-address {
  font-size: 0.95rem;
  color: var(--gray-lighter);
  font-weight: 300;
  line-height: 2;
  margin-bottom: var(--space-xl);
}

.location-address strong {
  color: var(--white);
  font-weight: 500;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.location-detail-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.location-detail-icon {
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.location-detail-text {
  font-size: 0.9rem;
  color: var(--gray-lighter);
  font-weight: 300;
  line-height: 1.6;
}

.location-detail-text strong {
  display: block;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 2px;
}

.map-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  border: 1px solid rgba(201, 168, 76, 0.15);
  overflow: hidden;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(80%) invert(92%) contrast(90%);
  transition: filter var(--transition-slow);
}

.map-wrapper:hover iframe {
  filter: grayscale(40%) invert(92%) contrast(90%);
}

/* ===========================================
   FOOTER
   =========================================== */
.footer {
  padding: var(--space-3xl) var(--space-xl) var(--space-xl);
  background: var(--black-deep);
  border-top: 1px solid var(--gray-dark);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: var(--space-3xl);
}

.footer-brand .logo {
  margin-bottom: var(--space-lg);
}

.footer-text {
  font-size: 0.85rem;
  color: var(--gray-light);
  font-weight: 300;
  line-height: 1.8;
  max-width: 350px;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-lg);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--gray-light);
  font-weight: 300;
  transition: color var(--transition-fast), transform var(--transition-fast);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.footer-phone-link {
  color: var(--gold) !important;
  font-size: 0.95rem;
  font-weight: 500;
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.footer-phone-link:hover {
  color: var(--gold-light) !important;
  transform: translateX(4px);
}

.footer-bottom {
  max-width: var(--max-width);
  margin: var(--space-2xl) auto 0;
  padding-top: var(--space-xl);
  border-top: 1px solid var(--gray-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--gray-medium);
  font-weight: 300;
}

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

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-dark);
  color: var(--gray-light);
  font-size: 0.9rem;
  transition: border-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

/* ===========================================
   WHATSAPP FLOATING BUTTON
   =========================================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  animation: pulse-glow 2s ease-in-out infinite;
  transition: transform var(--transition-fast);
}

.whatsapp-float:hover {
  transform: scale(1.12);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: white;
}

.whatsapp-tooltip {
  position: absolute;
  bottom: 72px;
  right: 0;
  background: var(--black-card);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 12px 18px;
  white-space: nowrap;
  font-size: 0.8rem;
  color: var(--white);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--transition-fast), transform var(--transition-fast);
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================================
   RESPONSIVE DESIGN
   =========================================== */
@media (max-width: 1024px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .about-image-wrapper img {
    height: 400px;
  }

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

  .differentials-layout {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

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

  .location-layout {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .nav-desktop {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-mobile {
    display: flex;
  }

  .hero-content {
    padding: var(--space-5xl) var(--space-md) var(--space-4xl);
  }

  .hero-title {
    font-size: clamp(2.2rem, 9vw, 3.5rem);
  }

  .hero-actions {
    flex-direction: column;
    gap: var(--space-md);
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-slider {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .map-wrapper {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .hero-badge {
    font-size: 0.55rem;
    letter-spacing: 2px;
    padding: 8px 16px;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .section-title {
    font-size: clamp(1.6rem, 6vw, 2.5rem);
  }
}
