/* 
 * TJ ESPAÇO DA BELEZA - BRAND-ALIGNED LUXURY REDESIGN
 * Palette: Official Pinkish-Red (#ED2A35), Pure White, & Soft Blush Wash
 * Author: Antigravity AI
 */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800&family=Montserrat:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Brand-Aligned Palette (Zero Gold - Official Pinkish-Red & Premium White) */
  --luxury-red: #ED2A35;       /* Vermelho rosado vibrante oficial da logo */
  --luxury-red-dark: #A31219;  /* Vermelho escuro para sombras e gradientes */
  --luxury-red-light: #F5535B; /* Vermelho rosado brilhante para hovers */
  --luxury-red-bg: #FFF0F1;    /* Fundo rosado ultra-suave acolhedor */
  
  --luxury-white: #FFFFFF;     /* Branco premium puro que substitui o dourado */
  --luxury-pink-wash: #FFF4F5; /* Fundo rosa-blush ultra-suave e acolhedor */
  
  /* Compatibilidade semântica (absolutamente zero tons de dourado/ouro) */
  --luxury-gold: var(--luxury-white);
  --luxury-gold-light: var(--luxury-pink-wash);
  --luxury-gold-dark: var(--luxury-red);
  
  --luxury-bg: #FCFAF9;        /* Fundo principal limpo e iluminado */
  --luxury-dark: #1F0507;      /* Cherry-Black profundo para menus e contrastes */
  --luxury-text: #2D1416;      /* Texto principal confortável e sofisticado */
  --luxury-text-muted: #6E5356;/* Texto secundário/apoio */
  
  /* Glassmorphism & UI Tokens */
  --glass-bg: rgba(255, 255, 255, 0.92);
  --glass-bg-dark: rgba(31, 5, 7, 0.95);
  --glass-border: rgba(237, 42, 53, 0.12); /* Soft pinkish-red glass border */
  --glass-shadow: rgba(237, 42, 53, 0.06);
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  
  --border-radius-lg: 24px;
  --border-radius-md: 16px;
  --border-radius-sm: 8px;
}

/* 1. Global Reset & Defaults */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--luxury-bg);
  color: var(--luxury-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ⚠️ BUG FIX: Previne que o header fixo corte/sobreponha o título das seções ao navegar ⚠️ */
section {
  scroll-margin-top: 100px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', serif;
  color: var(--luxury-dark);
  font-weight: 600;
  letter-spacing: 1px;
}

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

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

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--luxury-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--luxury-red);
  border-radius: var(--border-radius-sm);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--luxury-red-dark);
}

/* 2. Utility Classes & Layouts */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
}

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}

@media (max-width: 992px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Premium Badges */
.badge-premium {
  display: inline-block;
  background: linear-gradient(135deg, var(--luxury-red) 0%, var(--luxury-red-dark) 100%);
  color: var(--luxury-white);
  border: 1px solid var(--luxury-white);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(237, 42, 53, 0.15);
}

.badge-red-outline {
  display: inline-block;
  background: transparent;
  color: var(--luxury-red);
  border: 2px solid var(--luxury-red);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
  color: var(--luxury-red-dark);
}

.section-header h2::after {
  display: none;
}

.section-header p {
  color: var(--luxury-text-muted);
  font-size: 1.05rem;
  font-weight: 400;
}

.brand-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 12px 0 20px 0;
}

.brand-divider svg {
  color: var(--luxury-red);
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 2px 4px rgba(237, 42, 53, 0.12));
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2rem;
  }
  .section-header {
    margin-bottom: 40px;
  }
}

/* Premium Background Gradients and Accents */
.accent-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237, 42, 53, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
}

/* 3. Button Styles (Conversion-Focused) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 16px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  gap: 10px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--luxury-red) 0%, var(--luxury-red-dark) 100%);
  color: #FFF;
  box-shadow: 0 10px 20px rgba(237, 42, 53, 0.2);
  border: 1px solid var(--luxury-gold);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(237, 42, 53, 0.35), 0 0 15px rgba(237, 42, 53, 0.4);
  border-color: #FFF;
}

.btn-secondary {
  background: transparent;
  color: var(--luxury-red);
  border: 2px solid var(--luxury-red);
}

.btn-secondary:hover {
  background-color: var(--luxury-red);
  color: #FFF;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(237, 42, 53, 0.15);
}

.btn-whatsapp {
  background: linear-gradient(135deg, var(--luxury-red) 0%, var(--luxury-red-dark) 100%);
  color: #FFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 20px rgba(237, 42, 53, 0.2);
  font-size: 0.95rem;
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, var(--luxury-red-light) 0%, var(--luxury-red) 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(237, 42, 53, 0.35), 0 0 15px rgba(237, 42, 53, 0.2);
}

/* 4. Glassmorphism Layout Elements */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 30px var(--glass-shadow);
  border-radius: var(--border-radius-lg);
  padding: 35px;
  transition: var(--transition-smooth);
}

.glass-card:hover {
  transform: translateY(-5px);
  border-color: rgba(237, 42, 53, 0.25);
  box-shadow: 0 15px 35px rgba(237, 42, 53, 0.08);
}

/* 5. Header / Navigation (Z-Index fix, overlap prevention) */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(31, 5, 7, 0.6);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  opacity: 0;
  pointer-events: none;
  z-index: 999;
  transition: var(--transition-smooth);
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

body.no-scroll {
  overflow: hidden;
  height: 100vh;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  padding: 20px 0;
  /* ⚠️ BUG FIX: Garante fundo de segurança no mobile antes do scroll */
  background: rgba(252, 250, 249, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(237, 42, 53, 0.08);
}

header.scrolled {
  background: var(--luxury-dark);
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  border-bottom: 2px solid var(--luxury-red);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--luxury-gold);
  object-fit: cover;
}

.logo-text {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--luxury-red);
  letter-spacing: 1px;
  line-height: 1.2;
}

header.scrolled .logo-text {
  color: #FFF;
}

.logo-text span {
  display: block;
  font-size: 0.65rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--luxury-red-dark);
  letter-spacing: 2px;
  text-transform: uppercase;
}

header.scrolled .logo-text span {
  color: #FFF;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--luxury-dark);
  position: relative;
  padding: 6px 0;
}

header.scrolled .nav-link {
  color: #FFF;
}

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

header.scrolled .nav-link::after {
  background-color: #FFF;
}

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

.nav-link:hover {
  color: var(--luxury-red);
}

header.scrolled .nav-link:hover {
  color: var(--luxury-gold);
}

.nav-btn {
  padding: 10px 24px;
  font-size: 0.75rem;
}

/* ⚠️ BUG FIX Hamburger menu: Mobile Hamburger Styling ⚠️ */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2001; /* Fica acima de tudo */
  padding: 10px;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--luxury-red);
  margin: 5px 0;
  transition: var(--transition-smooth);
  border-radius: 3px;
}

header.scrolled .menu-toggle span {
  background-color: var(--luxury-gold);
}

@media (max-width: 992px) {
  .menu-toggle {
    display: block;
  }
  
  /* ⚠️ MENU BUG RESOLVED: Mobile Drawer flawless style ⚠️ */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 290px;
    height: 100vh;
    background-color: var(--glass-bg-dark); /* Escuro luxo */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: -10px 0 35px rgba(0, 0, 0, 0.4);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 35px;
    transition: var(--transition-smooth);
    z-index: 1999;
    border-left: 2px solid var(--luxury-gold);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-menu .nav-link {
    color: #FFF !important;
    font-size: 1rem;
  }
  
  /* Menu Hamburger Active State (Transforms to X smoothly) */
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background-color: var(--luxury-gold);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
    background-color: var(--luxury-gold);
  }
}

/* 6. Hero Section (Majestic Pink-Red & Gold Premium) */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  overflow: hidden;
  /* Pink-red luxury brand velvet gradient */
  background: linear-gradient(135deg, var(--luxury-red-dark) 0%, #3a0004 100%);
  color: #FFF;
  border-bottom: 3px solid rgba(255, 255, 255, 0.12);
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(237, 42, 53, 0.22) 0%, rgba(0, 0, 0, 0) 65%);
  pointer-events: none;
}

.hero-content {
  z-index: 2;
  position: relative;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 25px;
  color: #FFF;
}

.hero h1 span {
  color: var(--luxury-gold);
  position: relative;
  display: inline-block;
}

.hero h1 span::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  z-index: -1;
  border-radius: 4px;
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  margin-bottom: 30px;
  max-width: 540px;
}

/* ⚠️ CONVERSION ELEMENT: Trust Badges / Social Proof on Hero ⚠️ */
.hero-social-proof {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 25px;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.proof-icon {
  color: var(--luxury-gold);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
}

.proof-text {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero .btn-secondary {
  color: #FFF;
  border-color: #FFF;
}

.hero .btn-secondary:hover {
  background-color: #FFF;
  color: var(--luxury-red-dark);
}

.hero-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Organic shape for hero image */
.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 520px;
  border-radius: 120px 24px 120px 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  border: 3px solid var(--luxury-gold);
  transition: var(--transition-smooth);
}

.hero-image-wrapper:hover {
  transform: scale(1.02);
  border-color: #FFF;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating card over hero image for premium feel */
.floating-award-card {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: var(--luxury-dark);
  backdrop-filter: blur(10px);
  border: 1.5px solid var(--luxury-gold);
  padding: 15px 25px;
  border-radius: var(--border-radius-md);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 3;
  animation: floatUp 4s ease-in-out infinite alternate;
}

.floating-icon {
  background: var(--luxury-gold);
  color: var(--luxury-red-dark);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.floating-text h4 {
  font-size: 0.9rem;
  font-family: 'Cinzel', serif;
  margin-bottom: 2px;
  color: #FFF;
}

.floating-text p {
  font-size: 0.75rem;
  color: var(--luxury-gold);
  font-weight: 700;
}

@media (max-width: 1200px) {
  .hero h1 {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  .hero {
    min-height: auto;
    padding-top: 140px;
    padding-bottom: 80px;
  }
  .hero h1 {
    font-size: 2.8rem;
  }
  .hero-image-container {
    margin-top: 50px;
  }
  .hero-image-wrapper {
    height: 400px;
  }
  .hero-social-proof {
    margin-top: 30px;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .hero-buttons .btn {
    width: 100%;
  }
  .floating-award-card {
    left: 10px;
    bottom: 20px;
  }
}

/* 7. The TJ Experience Section (Welcoming Warm Gold Background) */
.experience {
  background-color: var(--luxury-gold-light);
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid rgba(237, 42, 53, 0.08);
}

.experience-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.experience-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.experience-icon {
  background: linear-gradient(135deg, var(--luxury-red) 0%, var(--luxury-red-dark) 100%);
  color: #FFF; /* Mudado para branco de acordo com os detalhes brancos da logo */
  min-width: 48px;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  box-shadow: 0 6px 12px rgba(237, 42, 53, 0.15);
  border: 1.5px solid var(--luxury-gold);
}

.experience-text h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--luxury-red-dark);
}

.experience-text p {
  color: var(--luxury-text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.experience-image-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.exp-img-wrapper {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border: 2px solid var(--luxury-gold);
}

.exp-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.exp-img-wrapper img:hover {
  transform: scale(1.05);
}

.exp-img-1 {
  height: 320px;
  border-radius: 80px 20px 20px 20px;
}

.exp-img-2 {
  height: 240px;
  align-self: end;
  border-radius: 20px 80px 20px 20px;
}

.exp-badge-floating {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--luxury-red);
  color: #FFF;
  border: 2px solid var(--luxury-gold);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 25px rgba(237, 42, 53, 0.3);
  z-index: 3;
}

.exp-badge-floating span:nth-child(1) {
  font-family: 'Cinzel', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #FFF;
}

.exp-badge-floating span:nth-child(2) {
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .experience-image-grid {
    margin-top: 40px;
  }
}

/* ⚠️ CONVERSION BOOST: Spa Conveniences / Pillars Section ⚠️ */
.amenities-section {
  background: #FFF;
  padding: 60px 0;
  border-bottom: 1px solid rgba(237, 42, 53, 0.08);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.amenity-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  border-radius: var(--border-radius-md);
  background: var(--luxury-bg);
  border: 1px solid rgba(237, 42, 53, 0.08);
}

.amenity-icon {
  background: var(--luxury-red-bg);
  color: var(--luxury-red);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.amenity-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--luxury-dark);
}

.amenity-title span {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--luxury-text-muted);
}

@media (max-width: 992px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .amenities-grid {
    grid-template-columns: 1fr;
  }
}

/* 8. Interactive Services Section */
.services-section {
  background-color: var(--luxury-bg);
}

/* Instagram Circular Highlights Tab System */
.services-tabs {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 55px;
  flex-wrap: wrap;
}

.tab-btn {
  background: #FFF;
  border: 2px solid #EBE7E7;
  color: var(--luxury-text);
  width: 95px;
  height: 95px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.04);
  transition: var(--transition-smooth);
  position: relative;
  padding: 10px;
  text-align: center;
}

.tab-btn::before {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: 50%;
  border: 2.5px solid transparent;
  transition: var(--transition-smooth);
}

.tab-btn.active::before, .tab-btn:hover::before {
  border-color: var(--luxury-red);
}

.tab-btn.active {
  border-color: var(--luxury-red);
  background: var(--luxury-red-bg);
  color: var(--luxury-red-dark);
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(237, 42, 53, 0.12);
}

.tab-btn:hover {
  transform: scale(1.05);
  border-color: var(--luxury-red);
}

@media (max-width: 576px) {
  .services-tabs {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 15px 24px;
    margin-left: -24px;
    margin-right: -24px;
    gap: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .services-tabs::-webkit-scrollbar {
    display: none;
  }
  .tab-btn {
    flex: 0 0 auto;
    scroll-snap-align: center;
    width: 80px;
    height: 80px;
    font-size: 0.6rem;
  }
  .tab-btn::before {
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

/* Flawless responsive card structure */
.service-card {
  background: #FFF;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
  border: 1.5px solid rgba(237, 42, 53, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--luxury-red);
  box-shadow: 0 15px 35px rgba(237, 42, 53, 0.08);
}

.service-img {
  height: 220px;
  overflow: hidden;
  position: relative;
  border-bottom: 2px solid var(--luxury-gold-light);
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.service-card:hover .service-img img {
  transform: scale(1.06);
}

.service-category {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--luxury-red);
  color: #FFF;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid var(--luxury-gold);
}

.service-info {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-info h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--luxury-red-dark);
}

.service-info p {
  color: var(--luxury-text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 25px;
  flex-grow: 1;
}

.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(237, 42, 53, 0.08);
  padding-top: 20px;
  margin-top: auto;
}

.service-price-tag {
  display: flex;
  flex-direction: column;
}

.service-price-tag span:nth-child(1) {
  font-size: 0.7rem;
  color: var(--luxury-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.service-price-tag span:nth-child(2) {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--luxury-red);
}

.service-action-btn {
  background: none;
  border: none;
  color: var(--luxury-gold-dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
  padding: 8px 12px;
  border-radius: var(--border-radius-sm);
}

.service-action-btn:hover {
  color: var(--luxury-red);
  background-color: var(--luxury-red-bg);
}

/* 9. Dynamic Spa Day Simulator (Red & Gold Theme) */
.simulator-section {
  background: linear-gradient(135deg, var(--luxury-red-bg) 0%, var(--luxury-gold-light) 100%);
  position: relative;
  border-top: 1px solid rgba(237, 42, 53, 0.08);
  border-bottom: 1px solid rgba(237, 42, 53, 0.08);
}

.simulator-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 992px) {
  .simulator-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.simulator-options {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1.5px solid rgba(237, 42, 53, 0.1);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: 0 10px 30px rgba(108, 6, 20, 0.05);
}

.simulator-intro {
  margin-bottom: 30px;
}

.simulator-intro h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--luxury-red-dark);
}

.simulator-intro p {
  color: var(--luxury-text-muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.sim-category-group {
  margin-bottom: 30px;
}

.sim-category-group h4 {
  font-size: 0.95rem;
  color: var(--luxury-red);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
  border-left: 3px solid var(--luxury-red);
  padding-left: 10px;
  font-weight: 700;
}

.sim-items-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

/* Custom checkbox card */
.sim-item-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #FFF;
  border: 1.5px solid rgba(237, 42, 53, 0.08);
  border-radius: var(--border-radius-md);
  padding: 16px 20px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.sim-item-card:hover {
  border-color: var(--luxury-red);
  transform: translateY(-2px);
}

.sim-item-card.selected {
  border-color: var(--luxury-red);
  background: var(--luxury-red-bg);
  box-shadow: 0 4px 15px rgba(237, 42, 53, 0.05);
}

.sim-item-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Checkbox Design */
.sim-checkbox {
  width: 22px;
  height: 22px;
  border: 2px solid rgba(237, 42, 53, 0.3);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  background: #FFF;
}

.sim-item-card.selected .sim-checkbox {
  background: var(--luxury-red);
  border-color: var(--luxury-red);
}

.sim-checkbox::after {
  content: '✓';
  color: #FFF;
  font-size: 0.8rem;
  font-weight: 700;
  display: none;
}

.sim-item-card.selected .sim-checkbox::after {
  display: block;
}

.sim-item-title {
  display: flex;
  flex-direction: column;
}

.sim-item-title span:nth-child(1) {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--luxury-dark);
}

.sim-item-title span:nth-child(2) {
  font-size: 0.75rem;
  color: var(--luxury-text-muted);
  font-weight: 500;
}

.sim-item-price {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--luxury-red-dark);
}

/* Simulator Summary Panel (Sticky Card) */
.simulator-summary {
  position: sticky;
  top: 100px;
}

.summary-card {
  background: linear-gradient(135deg, var(--luxury-red-dark) 0%, #300004 100%);
  color: #FFF;
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: 0 15px 35px rgba(108, 6, 20, 0.35);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.summary-card h3 {
  color: #FFF;
  font-size: 1.4rem;
  margin-bottom: 20px;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 15px;
  font-family: 'Cinzel', serif;
}

.selected-services-list {
  list-style: none;
  min-height: 120px;
  max-height: 250px;
  overflow-y: auto;
  margin-bottom: 25px;
  padding-right: 5px;
}

.selected-services-list::-webkit-scrollbar {
  width: 4px;
}

.selected-services-list::-webkit-scrollbar-thumb {
  background: var(--luxury-red);
}

.selected-service-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
  padding-bottom: 6px;
  animation: slideUpShort 0.3s ease forwards;
}

.selected-service-item span:nth-child(2) {
  color: var(--luxury-gold);
  font-weight: 700;
}

.empty-summary-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 140px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  font-size: 0.85rem;
}

.empty-summary-state i {
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--luxury-gold);
  opacity: 0.8;
}

.summary-time {
  border-top: 1.5px dashed rgba(255, 255, 255, 0.15);
  padding-top: 20px;
  margin-bottom: 20px;
}

.duration-progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

#duration-progress-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--luxury-red) 0%, var(--luxury-red-light) 100%);
  border-radius: 10px;
  transition: var(--transition-smooth);
}

.summary-total {
  border-top: 1.5px solid rgba(255, 255, 255, 0.15);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.summary-total span:nth-child(1) {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.8);
}

.summary-total span:nth-child(2) {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #FFF;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.summary-card .btn-whatsapp {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.summary-card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237, 42, 53, 0.2) 0%, rgba(255, 255, 255, 0) 75%);
  pointer-events: none;
}

/* 10. Transformations & Social Proof (Instagram Style) */
.gallery-section {
  background-color: var(--luxury-bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.gallery-card {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  height: 320px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  border: 2px solid rgba(237, 42, 53, 0.08);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.gallery-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(163, 18, 25, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: 2;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-hover-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px;
  color: #FFF;
  z-index: 3;
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-hover-info h4 {
  color: var(--luxury-gold);
  font-size: 0.95rem;
  margin-bottom: 5px;
  font-family: 'Cinzel', serif;
}

.gallery-hover-info p {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.instagram-icon-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--luxury-red);
  color: #FFF;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  z-index: 3;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  border: 1.5px solid var(--luxury-gold);
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(237, 42, 53, 0.15);
  border-color: var(--luxury-gold);
}

.gallery-card:hover::after {
  opacity: 1;
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-card:hover .gallery-hover-info {
  transform: translateY(0);
  opacity: 1;
}

/* Premium Lightbox Style Popup */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(31, 5, 7, 0.96);
  z-index: 2000;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition-smooth);
  backdrop-filter: blur(8px);
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 85%;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 2px solid var(--luxury-gold);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  transform: scale(0.9);
  transition: var(--transition-smooth);
}

.lightbox.active .lightbox-content {
  transform: scale(1);
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(31, 5, 7, 0.7);
  border: 1.5px solid var(--luxury-gold);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 2010;
  transition: var(--transition-smooth);
}

.lightbox-close:hover {
  background: var(--luxury-red);
  color: #FFF;
  transform: scale(1.05);
}

.lightbox-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(31, 5, 7, 0.9);
  color: #FFF;
  padding: 15px 25px;
  font-size: 0.85rem;
  border-top: 1.5px solid var(--luxury-gold);
}

.lightbox-caption h4 {
  color: var(--luxury-gold);
  font-family: 'Cinzel', serif;
  margin-bottom: 2px;
}

/* 11. Customer Testimonials */
.testimonials {
  background-color: var(--luxury-gold-light);
  overflow: hidden;
  border-top: 2px solid rgba(237, 42, 53, 0.08);
  border-bottom: 2px solid rgba(237, 42, 53, 0.08);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: #FFF;
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
  border: 1.5px solid rgba(237, 42, 53, 0.08);
  position: relative;
}

.testimonial-card:hover {
  border-color: var(--luxury-red);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(237, 42, 53, 0.05);
  transition: var(--transition-smooth);
}

.testimonial-stars {
  color: var(--luxury-gold);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.testimonial-quote {
  font-size: 0.95rem;
  color: var(--luxury-text);
  font-style: italic;
  font-weight: 500;
  margin-bottom: 25px;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--luxury-red);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 1.1rem;
  border: 2px solid var(--luxury-gold);
  box-shadow: 0 4px 10px rgba(237, 42, 53, 0.2);
}

.author-info h4 {
  font-size: 0.9rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--luxury-red-dark);
}

.author-info p {
  font-size: 0.75rem;
  color: var(--luxury-text-muted);
}

/* 12. Contact & Practical Information */
.contact-section {
  background-color: var(--luxury-bg);
  position: relative;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

@media (max-width: 992px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.contact-card {
  background: #FFF;
  border: 1.5px solid rgba(237, 42, 53, 0.08);
  border-radius: var(--border-radius-md);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.01);
  transition: var(--transition-smooth);
}

.contact-card:hover {
  border-color: var(--luxury-red);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(237, 42, 53, 0.05);
}

.contact-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--luxury-red-bg);
  color: var(--luxury-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 20px;
  border: 1.5px solid var(--luxury-gold);
  box-shadow: 0 4px 10px rgba(237, 42, 53, 0.05);
}

.contact-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--luxury-red-dark);
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--luxury-text-muted);
  font-weight: 500;
  line-height: 1.5;
}

.contact-card a:hover {
  color: var(--luxury-red);
  text-decoration: underline;
}

.map-wrapper {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  height: 400px;
  border: 2px solid var(--luxury-gold);
  box-shadow: 0 10px 30px rgba(108, 6, 20, 0.1);
  margin-bottom: 50px;
  position: relative;
}

.map-canvas-aesthetic {
  background: linear-gradient(135deg, var(--luxury-red-bg) 0%, var(--luxury-gold-light) 100%);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px;
}

.map-icon-luxury {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--luxury-red);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 10px 20px rgba(237, 42, 53, 0.25);
  border: 2px solid var(--luxury-gold);
  margin-bottom: 25px;
  animation: mapPulse 2s infinite;
}

@keyframes mapPulse {
  0% { transform: scale(1); box-shadow: 0 10px 20px rgba(237, 42, 53, 0.25); }
  50% { transform: scale(1.05); box-shadow: 0 15px 25px rgba(237, 42, 53, 0.5); }
  100% { transform: scale(1); box-shadow: 0 10px 20px rgba(237, 42, 53, 0.25); }
}

.map-canvas-aesthetic h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: var(--luxury-red-dark);
}

.map-canvas-aesthetic p {
  color: var(--luxury-text-muted);
  font-size: 0.95rem;
  max-width: 500px;
  margin-bottom: 25px;
  font-weight: 500;
}

.cta-booking-footer {
  text-align: center;
  padding: 40px 0 0 0;
  border-top: 1.5px solid rgba(237, 42, 53, 0.08);
}

.cta-booking-footer h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: var(--luxury-red-dark);
}

.cta-booking-footer p {
  color: var(--luxury-text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 30px;
}

/* --- Price-Free Layout Additions --- */
.service-duration-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--luxury-pink-wash);
  color: var(--luxury-red-dark);
  border: 1px solid rgba(237, 42, 53, 0.1);
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(237, 42, 53, 0.03);
}

.service-duration-tag svg {
  color: var(--luxury-red);
}

.sim-item-duration {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  color: var(--luxury-red-dark);
  font-size: 0.85rem;
  background: rgba(237, 42, 53, 0.05);
  padding: 4px 10px;
  border-radius: 20px;
}

/* --- DYNAMIC INTERACTIVE CONCIERGE WHATSAPP WIDGET --- */
.whatsapp-widget-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  font-family: 'Montserrat', sans-serif;
}

/* Floating Trigger Bubble */
.whatsapp-widget-trigger {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--luxury-red) 0%, var(--luxury-red-dark) 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(237, 42, 53, 0.3);
  transition: var(--transition-smooth);
  position: relative;
  outline: none;
}

.whatsapp-widget-trigger:hover {
  transform: scale(1.08) rotate(5deg);
  box-shadow: 0 14px 35px rgba(237, 42, 53, 0.45);
}

.whatsapp-widget-trigger.chat-open {
  transform: scale(0.9) rotate(-90deg);
  background: var(--luxury-red-dark);
}

/* Notification badge */
.notification-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #FFF;
  color: var(--luxury-red-dark);
  font-weight: 800;
  font-size: 0.7rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--luxury-red);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: opacity 0.3s ease;
}

@keyframes badgePulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    transform: scale(1.25);
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.notification-badge.pulse {
  animation: badgePulse 2s infinite;
}

/* Chat Window Drawer (Slide-In card) */
.whatsapp-chat-window {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 370px;
  height: 520px;
  background: #FFF;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(31, 5, 7, 0.15);
  border: 1px solid rgba(237, 42, 53, 0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.whatsapp-chat-window.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Header */
.chat-header {
  background: linear-gradient(135deg, var(--luxury-red) 0%, var(--luxury-red-dark) 100%);
  padding: 16px 20px;
  color: #FFF;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.1);
}

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

.chat-avatar-wrapper {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  overflow: visible;
}

.chat-avatar-wrapper img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.status-indicator-dot {
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 11px;
  height: 11px;
  background: #25D366;
  border: 2px solid var(--luxury-red-dark);
  border-radius: 50%;
}

.chat-profile-info {
  display: flex;
  flex-direction: column;
}

.chat-name-row {
  display: flex;
  align-items: center;
  gap: 5px;
}

.chat-profile-info h4 {
  font-family: 'Montserrat', sans-serif;
  color: #FFF;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.verified-badge {
  color: #FFF;
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  padding: 2px;
  border-radius: 50%;
}

.chat-status {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
}

.chat-close-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.8rem;
  cursor: pointer;
  outline: none;
  transition: color 0.2s ease;
  line-height: 1;
}

.chat-close-btn:hover {
  color: #FFF;
}

/* Chat Body (Doodles Background + Conversation) */
.chat-body {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  background-color: var(--luxury-pink-wash);
  background-image: radial-gradient(rgba(237, 42, 53, 0.04) 1px, transparent 1px);
  background-size: 15px 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.chat-msg {
  max-width: 82%;
  display: flex;
  flex-direction: column;
}

.chat-msg.system {
  align-self: flex-start;
}

.chat-msg-text {
  background: #FFF;
  color: var(--luxury-text);
  padding: 10px 14px;
  border-radius: 0 16px 16px 16px;
  font-size: 0.82rem;
  line-height: 1.5;
  box-shadow: 0 2px 8px rgba(31, 5, 7, 0.04);
  position: relative;
  font-weight: 500;
}

.chat-msg.system .chat-msg-text {
  border-top-left-radius: 0;
}

.chat-msg-time {
  display: block;
  text-align: right;
  font-size: 0.6rem;
  color: var(--luxury-text-muted);
  margin-top: 4px;
  font-weight: 400;
}

/* Sincronização Simulator Sync Card in Chat */
.chat-simulator-sync {
  margin: 5px 0;
  width: 100%;
}

.sync-card {
  background: #FFF;
  border: 1.5px solid var(--luxury-red);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(237, 42, 53, 0.08);
  animation: slideInUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sync-card-header {
  background: var(--luxury-pink-wash);
  padding: 8px 12px;
  color: var(--luxury-red-dark);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(237, 42, 53, 0.1);
  display: flex;
  align-items: center;
}

.sync-card-body {
  padding: 12px 14px;
}

.sync-card-meta {
  font-size: 0.72rem;
  color: var(--luxury-text-muted);
  margin-bottom: 4px;
}

.sync-card-list {
  margin: 6px 0;
  padding-left: 5px;
  list-style: none;
}

.sync-card-list li {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--luxury-text);
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sync-card-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--luxury-red) 0%, var(--luxury-red-dark) 100%);
  border: none;
  border-radius: 8px;
  color: #FFF;
  padding: 8px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
  margin-top: 8px;
}

.sync-card-btn:hover {
  background: linear-gradient(135deg, var(--luxury-red-light) 0%, var(--luxury-red) 100%);
  transform: translateY(-1px);
}

/* Quick Reply Chips */
.chat-quick-replies {
  background: #FFF;
  padding: 10px 14px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  border-top: 1px solid rgba(237, 42, 53, 0.05);
  scrollbar-width: none;
}

.chat-quick-replies::-webkit-scrollbar {
  display: none;
}

.reply-chip {
  background: #FFF;
  color: var(--luxury-red-dark);
  border: 1px solid rgba(237, 42, 53, 0.3);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-fast);
  outline: none;
}

.reply-chip:hover {
  background: var(--luxury-red);
  color: #FFF;
  border-color: var(--luxury-red);
}

/* Footer / Input row */
.chat-footer {
  background: #FFF;
  padding: 12px 16px;
  border-top: 1px solid rgba(237, 42, 53, 0.08);
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-footer input {
  flex: 1;
  background: var(--luxury-pink-wash);
  border: 1px solid rgba(237, 42, 53, 0.1);
  padding: 10px 16px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-family: 'Montserrat', sans-serif;
  color: var(--luxury-text);
  outline: none;
  transition: var(--transition-fast);
}

.chat-footer input:focus {
  border-color: var(--luxury-red);
  background: #FFF;
}

.chat-send-btn {
  background: var(--luxury-red);
  border: none;
  color: #FFF;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  outline: none;
}

.chat-send-btn:hover {
  background: var(--luxury-red-dark);
  transform: scale(1.05);
}

/* MOBILE ADAPTATION FOR WIDGET */
@media (max-width: 576px) {
  .whatsapp-widget-container {
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-chat-window {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100vw;
    height: 70vh;
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -10px 30px rgba(31, 5, 7, 0.15);
    border: none;
    z-index: 1001;
    transform: translateY(100%);
  }
  
  .whatsapp-chat-window.active {
    transform: translateY(0);
  }
  
  .chat-close-btn {
    font-size: 2.2rem;
    padding: 0 10px;
  }
}

/* Sophisticated Footer (Crimson Luxury Red Background) */
footer {
  background-color: var(--luxury-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 80px 0 40px 0;
  border-top: 3px solid var(--luxury-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.footer-about h3 {
  color: #FFF;
  margin-bottom: 20px;
}

.footer-about p {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 25px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--luxury-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--transition-fast);
  border: 1.5px solid var(--luxury-gold);
}

.social-icon:hover {
  background: var(--luxury-red);
  color: #FFF;
  transform: translateY(-2px);
  border-color: #FFF;
}

.footer-links h3 {
  color: #FFF;
  margin-bottom: 20px;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-menu a {
  font-size: 0.9rem;
  font-weight: 400;
  transition: var(--transition-fast);
}

.footer-menu a:hover {
  color: var(--luxury-gold);
  padding-left: 5px;
}

.footer-hours h3 {
  color: #FFF;
  margin-bottom: 20px;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-hours-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 6px;
}

.hours-row span:nth-child(2) {
  color: var(--luxury-gold);
  font-weight: 600;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.75rem;
  font-weight: 400;
}

.footer-bottom p {
  margin-bottom: 5px;
}

.footer-bottom a {
  color: var(--luxury-gold);
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   TJ ESPAÇO DA BELEZA - INTERACTIVE ANIMATIONS & DUAL BOOKING SYSTEM
   ========================================================================== */

/* --- Scroll Reveal & Immersive Visual Animations --- */
.reveal-on-scroll {
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal-on-scroll.reveal-up {
  transform: translateY(40px);
}

.reveal-on-scroll.reveal-left {
  transform: translateX(-40px);
}

.reveal-on-scroll.reveal-right {
  transform: translateX(40px);
}

.reveal-on-scroll.active {
  opacity: 1;
  transform: translate(0) !important;
}

/* Staggered transition delays for adjacent children */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* Elegant Shimmer Glow Animation on primary CTA buttons */
.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 30%;
  height: 200%;
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(30deg);
  transition: none;
  animation: shimmerGlow 4s infinite ease-in-out;
}

@keyframes shimmerGlow {
  0% {
    left: -60%;
  }
  15%, 100% {
    left: 150%;
  }
}

/* Enhance card scale-ups on hover with premium transition curves */
.service-card, .gallery-card, .testimonial-card, .contact-card {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Premium Booking Modal Overlay --- */
.booking-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(31, 5, 7, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 2005; /* Garante que fique acima de tudo, inclusive do header (1000) e do widget (1001) */
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.booking-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.booking-modal-container {
  background: rgba(255, 255, 255, 0.96);
  border: 1.5px solid rgba(237, 42, 53, 0.15);
  box-shadow: 0 25px 60px rgba(108, 6, 20, 0.2);
  border-radius: var(--border-radius-lg);
  width: 90%;
  max-width: 650px;
  padding: 40px;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.booking-modal-overlay.active .booking-modal-container {
  transform: scale(1) translateY(0);
}

.booking-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1.5px solid rgba(237, 42, 53, 0.08);
  padding-bottom: 15px;
  margin-bottom: 25px;
}

.booking-modal-header h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  color: var(--luxury-red-dark);
}

.booking-modal-close {
  background: none;
  border: none;
  font-size: 2.5rem;
  color: var(--luxury-text-muted);
  cursor: pointer;
  line-height: 1;
  transition: var(--transition-fast);
  padding: 0 10px;
}

.booking-modal-close:hover {
  color: var(--luxury-red);
  transform: scale(1.05);
}

/* Form Styles inside Modal */
.booking-form-premium {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.booking-summary-preview {
  background: var(--luxury-pink-wash);
  border: 1px solid rgba(237, 42, 53, 0.08);
  border-radius: var(--border-radius-md);
  padding: 20px;
}

.booking-summary-preview h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--luxury-red-dark);
  margin-bottom: 5px;
}

.booking-preview-meta {
  font-size: 0.8rem;
  color: var(--luxury-text-muted);
  font-weight: 600;
  margin-bottom: 12px;
}

.booking-preview-list {
  list-style: none;
  max-height: 110px;
  overflow-y: auto;
  padding-left: 0;
  border-top: 1px dashed rgba(237, 42, 53, 0.12);
  padding-top: 10px;
}

.booking-preview-list li {
  font-size: 0.82rem;
  color: var(--luxury-text);
  margin-bottom: 6px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.booking-preview-list li::before {
  content: '✦';
  color: var(--luxury-red);
  font-size: 0.7rem;
}

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

@media (max-width: 576px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--luxury-text-muted);
}

.form-group input[type="text"],
.form-group input[type="tel"] {
  padding: 12px 16px;
  border-radius: var(--border-radius-sm);
  border: 1.5px solid rgba(237, 42, 53, 0.15);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: var(--luxury-text);
  transition: var(--transition-fast);
  background: #FFF;
}

.form-group input:focus {
  outline: none;
  border-color: var(--luxury-red);
  box-shadow: 0 0 10px rgba(237, 42, 53, 0.12);
}

/* Date and Period Chips */
.date-chips-container,
.time-chips-container {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.date-chip,
.time-chip {
  background: #FFF;
  border: 1.5px solid rgba(237, 42, 53, 0.15);
  color: var(--luxury-text);
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.date-chip:hover,
.time-chip:hover {
  border-color: var(--luxury-red);
  color: var(--luxury-red);
}

.date-chip.active,
.time-chip.active {
  background: var(--luxury-red);
  border-color: var(--luxury-red);
  color: #FFF;
  box-shadow: 0 4px 12px rgba(237, 42, 53, 0.2);
}

/* Dual Button Design inside Simulator Summary Card */
.btn-site-booking {
  background: rgba(255, 255, 255, 0.06);
  color: #FFF;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  transition: var(--transition-smooth);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.btn-site-booking:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #FFF;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(255, 255, 255, 0.15);
}

.btn-site-booking:disabled {
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

/* Luxurious White WhatsApp override inside the crimson Summary Card */
.summary-card .btn-whatsapp {
  background: var(--luxury-white);
  color: var(--luxury-red-dark);
  border: 1.5px solid var(--luxury-white);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.12);
}

.summary-card .btn-whatsapp:hover {
  background: var(--luxury-pink-wash);
  color: var(--luxury-red);
  border-color: var(--luxury-pink-wash);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.2), 0 0 15px rgba(255, 255, 255, 0.15);
}

.summary-card .btn-whatsapp svg {
  color: var(--luxury-red);
}

.summary-card .btn-whatsapp:disabled {
  background: #FFFFFF;
  color: var(--luxury-red-dark);
  opacity: 0.5;
  border-color: #FFFFFF;
  box-shadow: none;
  cursor: not-allowed;
}

.summary-card .btn-whatsapp:disabled svg {
  color: var(--luxury-red);
}

.btn-site-booking:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* Success View animation */
.booking-success-view {
  text-align: center;
  padding: 20px 0;
  animation: scaleInSuccess 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes scaleInSuccess {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.success-icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}

.checkmark-svg {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: block;
  stroke-width: 2.5;
  stroke: var(--luxury-red);
  stroke-miterlimit: 10;
  box-shadow: inset 0px 0px 0px var(--luxury-red);
  animation: fillSuccess 0.4s ease-in-out 0.4s forwards, scaleSuccess 0.3s ease-in-out 0.9s both;
}

.checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2.5;
  stroke-miterlimit: 10;
  stroke: var(--luxury-red);
  fill: none;
  animation: strokeSuccess 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  stroke-width: 3;
  stroke: #FFF;
  animation: strokeSuccess 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes strokeSuccess {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes fillSuccess {
  to {
    box-shadow: inset 0px 0px 0px 40px var(--luxury-red);
  }
}

@keyframes scaleSuccess {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}

.success-message {
  font-size: 1.05rem;
  color: var(--luxury-text);
  margin-bottom: 25px;
  line-height: 1.6;
  font-weight: 500;
}

.success-booking-details {
  background: var(--luxury-pink-wash);
  border: 1.5px dashed rgba(237, 42, 53, 0.2);
  border-radius: var(--border-radius-md);
  padding: 20px 25px;
  margin-bottom: 25px;
  display: inline-block;
  text-align: left;
}

.success-booking-details p {
  font-size: 0.9rem;
  color: var(--luxury-text);
  margin-bottom: 8px;
}

.success-booking-details p:last-child {
  margin-bottom: 0;
}

.success-booking-details strong {
  color: var(--luxury-red-dark);
}

.success-next-step {
  font-size: 0.85rem;
  color: var(--luxury-text-muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 400;
}

/* Otimização para Celular - Bottom Sheet iOS/Android no Mobile */
@media (max-width: 576px) {
  .booking-modal-overlay {
    align-items: flex-end; /* Abre a partir do rodapé */
  }
  
  .booking-modal-container {
    border-radius: 28px 28px 0 0; /* Apenas cantos superiores redondos */
    border-left: none;
    border-right: none;
    border-bottom: none;
    transform: translateY(100%);
    max-height: 85vh;
    padding: 30px 20px 40px 20px;
    width: 100vw;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  .booking-modal-overlay.active .booking-modal-container {
    transform: translateY(0);
  }
  
  .booking-modal-header {
    margin-bottom: 20px;
    padding-bottom: 12px;
  }
  
  .booking-modal-header h3 {
    font-size: 1.25rem;
  }
  
  .date-chips-container,
  .time-chips-container {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    margin-right: -20px; /* Estende rolagem visual */
    scrollbar-width: none;
  }
  
  .date-chips-container::-webkit-scrollbar,
  .time-chips-container::-webkit-scrollbar {
    display: none;
  }
  
  .date-chip,
  .time-chip {
    flex: 0 0 auto;
  }
}

/* --- DEDICATED DIRECT WHATSAPP BANNER --- */
.direct-whatsapp-banner-section {
  padding: 40px 0;
  background: var(--luxury-bg);
}

.direct-whatsapp-banner {
  background: linear-gradient(135deg, rgba(237, 42, 53, 0.04) 0%, rgba(163, 18, 25, 0.08) 100%);
  border: 1px solid rgba(237, 42, 53, 0.15);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(237, 42, 53, 0.04);
}

.banner-glow-effect {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237, 42, 53, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  filter: blur(30px);
  pointer-events: none;
}

.direct-whatsapp-content {
  z-index: 2;
  max-width: 60%;
}

.direct-whatsapp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--luxury-pink-wash);
  color: var(--luxury-red-dark);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid rgba(237, 42, 53, 0.1);
  margin-bottom: 15px;
}

.online-indicator {
  width: 8px;
  height: 8px;
  background-color: #25D366;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px rgba(37, 211, 102, 0.8);
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  50% { transform: scale(1.2); box-shadow: 0 0 0 6px rgba(37, 211, 102, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.direct-whatsapp-content h3 {
  font-size: 1.45rem;
  color: var(--luxury-red-dark);
  margin-bottom: 10px;
}

.direct-whatsapp-content p {
  color: var(--luxury-text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
}

.direct-whatsapp-action {
  z-index: 2;
  flex-shrink: 0;
}

.btn-whatsapp-direct {
  background: linear-gradient(135deg, var(--luxury-red) 0%, var(--luxury-red-dark) 100%);
  color: #FFF;
  border: 1.5px solid var(--luxury-white);
  box-shadow: 0 8px 20px rgba(237, 42, 53, 0.2);
  padding: 16px 32px;
  font-size: 0.9rem;
}

.btn-whatsapp-direct:hover {
  background: linear-gradient(135deg, var(--luxury-red-light) 0%, var(--luxury-red) 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(237, 42, 53, 0.3), 0 0 15px rgba(237, 42, 53, 0.15);
}

@media (max-width: 992px) {
  .direct-whatsapp-banner {
    flex-direction: column;
    text-align: center;
    padding: 35px 24px;
    align-items: center;
  }
  
  .direct-whatsapp-content {
    max-width: 100%;
  }
  
  .direct-whatsapp-badge {
    justify-content: center;
  }
  
  .direct-whatsapp-action {
    width: 100%;
  }
  
  .btn-whatsapp-direct {
    width: 100%;
  }
}

