/* ==========================================================================
   SUSANA RODRÍGUEZ - MARY KAY TIMEWISE LANDING PAGE STYLES
   ========================================================================== */

/* --- DESIGN SYSTEM & CSS VARIABLES --- */
:root {
  /* Color Palette */
  --bg-main: #FAF7F8;
  --bg-card: #FFFFFF;
  --bg-soft-pink: #FDF2F4;
  --bg-pink-accent: #F9E4E8;
  
  --primary-rose: #C77D8D;
  --primary-rose-hover: #B56A7A;
  --rose-gold-glow: rgba(199, 125, 141, 0.35);
  
  --dark-plum: #4A1926;
  --plum-accent: #6B2336;
  --text-dark: #2C1E22;
  --text-muted: #6E5B62;
  --text-light: #FDF7F8;
  
  --whatsapp-green: #25D366;
  --whatsapp-dark: #1EBE5B;
  
  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  
  /* Layout & Shadows */
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --border-radius-pill: 999px;
  
  --shadow-subtle: 0 10px 30px rgba(74, 25, 38, 0.05);
  --shadow-medium: 0 15px 35px rgba(74, 25, 38, 0.1);
  --shadow-hover: 0 20px 45px rgba(199, 125, 141, 0.22);
  
  --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- RESET & BASE STYLES --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- TYPOGRAPHY UTILITIES --- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--dark-plum);
  line-height: 1.2;
}

.section-header {
  margin-bottom: 3.5rem;
}

.sub-title {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--primary-rose);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.75rem;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
}

.highlight-text {
  background: linear-gradient(135deg, var(--dark-plum) 0%, var(--primary-rose) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.8rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--border-radius-pill);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--plum-accent) 0%, var(--primary-rose) 100%);
  color: var(--text-light);
  box-shadow: 0 8px 25px var(--rose-gold-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px var(--rose-gold-glow);
}

.btn-secondary {
  background-color: var(--bg-card);
  color: var(--dark-plum);
  border: 1px solid rgba(199, 125, 141, 0.4);
}

.btn-secondary:hover {
  background-color: var(--bg-soft-pink);
  border-color: var(--primary-rose);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: var(--whatsapp-green);
  color: #FFFFFF;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

.btn-large {
  padding: 1.15rem 2.4rem;
  font-size: 1.1rem;
}

.btn-glow {
  animation: subtlePulse 3s infinite;
}

@keyframes subtlePulse {
  0%, 100% { box-shadow: 0 8px 25px var(--rose-gold-glow); }
  50% { box-shadow: 0 12px 35px rgba(199, 125, 141, 0.55); }
}

/* --- GLASSMORPHISM CARDS --- */
.glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-subtle);
}

/* --- ANNOUNCEMENT BAR --- */
.announcement-bar {
  background: linear-gradient(90deg, var(--dark-plum) 0%, var(--plum-accent) 100%);
  color: var(--text-light);
  font-size: 0.88rem;
  padding: 0.6rem 0;
}

.announcement-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.announcement-link {
  color: var(--bg-pink-accent);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.announcement-link:hover {
  text-decoration: underline;
}

/* --- HEADER / NAVBAR --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 247, 248, 0.92);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(199, 125, 141, 0.15);
  transition: var(--transition-fast);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-logo:hover {
  transform: translateY(-1px) scale(1.02);
}

.brand-sparkle {
  font-size: 1.6rem;
  background: linear-gradient(135deg, #D49B99 0%, #C77D8D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 8px rgba(199, 125, 141, 0.4));
  animation: pulseSparkle 3s infinite ease-in-out;
}

@keyframes pulseSparkle {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.2) rotate(10deg); opacity: 1; }
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #4A1926 0%, #7A283C 40%, #C77D8D 75%, #4A1926 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  filter: drop-shadow(0 1px 3px rgba(74, 25, 38, 0.12));
  transition: all 0.4s ease;
}

.brand-logo:hover .brand-name {
  background-position: right center;
}

.brand-tag {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary-rose);
  margin-top: 2px;
}

.main-nav ul {
  display: flex;
  gap: 2.2rem;
}

.main-nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}

.main-nav a:hover {
  color: var(--primary-rose);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark-plum);
  cursor: pointer;
}

/* --- HERO SECTION --- */
.hero-section {
  position: relative;
  padding: 5rem 0 6rem;
  overflow: hidden;
}

.hero-bg-blobs .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: -1;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: rgba(249, 228, 232, 0.8);
  top: -100px;
  right: -100px;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: rgba(235, 203, 211, 0.5);
  bottom: -50px;
  left: -100px;
}

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

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--bg-pink-accent);
  color: var(--dark-plum);
  padding: 0.4rem 1.1rem;
  border-radius: var(--border-radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.12;
  margin-bottom: 1.25rem;
}

.hero-description {
  font-size: 1.18rem;
  color: var(--text-muted);
  margin-bottom: 2.2rem;
  max-width: 540px;
}

.hero-cta-group {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-trust-badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(199, 125, 141, 0.2);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark-plum);
}

.trust-item i {
  color: var(--primary-rose);
}

.hero-visual {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--border-radius-lg);
  padding: 12px;
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(249,228,232,0.6));
  box-shadow: var(--shadow-medium);
}

.hero-main-img {
  width: 100%;
  border-radius: var(--border-radius-md);
  object-fit: cover;
}

.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.85rem 1.2rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(199, 125, 141, 0.2);
  z-index: 10;
}

.badge-top-right {
  top: 10%;
  right: -25px;
}

.badge-bottom-left {
  bottom: 8%;
  left: -25px;
}

.badge-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--bg-soft-pink);
  color: var(--primary-rose);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.badge-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--dark-plum);
}

.badge-text span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* --- QUIZ SECTION --- */
.quiz-section {
  padding: 5rem 0;
}

.quiz-card {
  max-width: 780px;
  margin: 0 auto;
  padding: 3rem 2.5rem;
  position: relative;
}

.quiz-progress {
  height: 6px;
  background: var(--bg-pink-accent);
  border-radius: var(--border-radius-pill);
  margin-bottom: 2.5rem;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 33.33%;
  background: linear-gradient(90deg, var(--primary-rose), var(--plum-accent));
  transition: width 0.4s ease;
}

.quiz-step {
  display: none;
}

.quiz-step.active {
  display: block;
  animation: fadeIn 0.4s ease forwards;
}

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

.step-indicator {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-rose);
  margin-bottom: 0.5rem;
}

.quiz-question {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  text-align: center;
}

.quiz-options {
  display: grid;
  gap: 1.2rem;
}

.quiz-option-btn {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid rgba(199, 125, 141, 0.25);
  border-radius: var(--border-radius-md);
  text-align: left;
  cursor: pointer;
  transition: var(--transition-fast);
}

.quiz-option-btn:hover {
  border-color: var(--primary-rose);
  background-color: var(--bg-soft-pink);
  transform: translateX(4px);
}

.option-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--bg-pink-accent);
  color: var(--dark-plum);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.option-info strong {
  display: block;
  font-size: 1.05rem;
  color: var(--dark-plum);
}

.option-info span {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.result-box {
  text-align: center;
  padding: 1rem 0;
}

.result-icon {
  font-size: 3.5rem;
  color: var(--primary-rose);
  margin-bottom: 1rem;
}

.result-box h3 {
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
}

.result-box p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.summary-card {
  background: var(--bg-soft-pink);
  padding: 1.5rem;
  border-radius: var(--border-radius-md);
  margin-bottom: 2rem;
  text-align: left;
  display: grid;
  gap: 0.6rem;
}

.summary-item {
  font-size: 0.95rem;
}

.result-note {
  display: block;
  margin-top: 1.2rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* --- BENEFITS SECTION --- */
.benefits-section {
  padding: 5rem 0;
}

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

.benefit-card {
  background: var(--bg-card);
  padding: 3rem 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(199, 125, 141, 0.15);
  position: relative;
  transition: var(--transition-fast);
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.benefit-card.highlighted {
  background: linear-gradient(135deg, var(--dark-plum) 0%, var(--plum-accent) 100%);
  color: var(--text-light);
}

.benefit-card.highlighted h3,
.benefit-card.highlighted .benefit-number {
  color: var(--bg-pink-accent);
}

.benefit-card.highlighted p {
  color: rgba(255, 255, 255, 0.85);
}

.benefit-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(199, 125, 141, 0.25);
  position: absolute;
  top: 1rem;
  right: 1.8rem;
}

.benefit-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background-color: var(--bg-soft-pink);
  color: var(--dark-plum);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.8rem;
}

.benefit-card.highlighted .benefit-icon-wrapper {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--text-light);
}

.benefit-card h3 {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

/* INGREDIENTS BOX */
.ingredients-box {
  padding: 3rem;
}

.ingredients-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2.5rem;
}

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

.ingredient-item {
  display: flex;
  gap: 1.2rem;
}

.ing-badge {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--bg-pink-accent);
  color: var(--dark-plum);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.ing-text h4 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.ing-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* --- PRODUCTS SECTION --- */
.products-section {
  padding: 5rem 0;
  background-color: #F7EFF1;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: var(--bg-card);
  padding: 2.5rem 1.8rem;
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(199, 125, 141, 0.2);
  display: flex;
  flex-direction: column;
  transition: var(--transition-fast);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.product-card.highlight-product {
  border: 2px solid var(--primary-rose);
  background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-soft-pink) 100%);
}

.step-tag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.step-tag.tag-pink {
  color: var(--primary-rose);
}

.product-icon-header {
  font-size: 2.5rem;
  color: var(--primary-rose);
  margin-bottom: 1.2rem;
}

.product-title {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

.product-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.product-features li {
  font-size: 0.85rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-features i {
  color: var(--primary-rose);
}

.margin-top-lg {
  margin-top: 3.5rem;
}

/* --- LUXURY LINE SECTION --- */
.luxury-line-section {
  padding: 5.5rem 0;
  background: linear-gradient(180deg, #F7EFF1 0%, var(--bg-main) 100%);
}

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

.luxury-category-card {
  background: var(--bg-card);
  padding: 2.8rem 2rem;
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(199, 125, 141, 0.2);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-subtle);
  position: relative;
  transition: var(--transition-fast);
}

.luxury-category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.luxury-category-card.highlighted-luxury {
  border: 2px solid var(--primary-rose);
  background: linear-gradient(180deg, #FFFFFF 0%, #FDF2F4 100%);
}

.luxury-card-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--bg-pink-accent);
  color: var(--dark-plum);
  padding: 0.35rem 0.9rem;
  border-radius: var(--border-radius-pill);
  margin-bottom: 1.2rem;
}

.badge-gold {
  background: linear-gradient(135deg, #D49B99 0%, #6B2336 100%);
  color: #FFFFFF;
}

.luxury-card-title {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.luxury-card-desc {
  font-size: 0.93rem;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
}

.luxury-products-list {
  display: grid;
  gap: 1.2rem;
  margin-bottom: 2.2rem;
  flex-grow: 1;
}

.luxury-products-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.luxury-products-list i {
  color: var(--primary-rose);
  font-size: 1.1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.luxury-products-list strong {
  display: block;
  font-size: 0.95rem;
  color: var(--dark-plum);
  line-height: 1.3;
}

.luxury-products-list span {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.btn-full {
  width: 100%;
}

/* --- CONSULTANT SECTION --- */
.consultant-section {
  padding: 6rem 0;
}

.consultant-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.consultant-card-frame {
  position: relative;
  background: linear-gradient(135deg, var(--bg-pink-accent) 0%, var(--bg-soft-pink) 100%);
  padding: 3.5rem 2rem;
  border-radius: var(--border-radius-lg);
  text-align: center;
  border: 1px solid rgba(199, 125, 141, 0.3);
}

.consultant-photo-container {
  position: relative;
  width: 210px;
  height: 210px;
  margin: 0 auto 1.8rem;
  border-radius: 50%;
  padding: 6px;
  background: linear-gradient(135deg, var(--primary-rose) 0%, var(--dark-plum) 100%);
  box-shadow: 0 15px 35px rgba(199, 125, 141, 0.4);
}

.consultant-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #FFFFFF;
  /* Radiant, warm & cheerful filter enhancement */
  filter: brightness(1.06) contrast(1.03) saturate(1.08);
  transition: transform 0.4s ease;
}

.consultant-photo-container:hover .consultant-img {
  transform: scale(1.04);
}

.photo-glow-ring {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border-radius: 50%;
  border: 2px dashed rgba(199, 125, 141, 0.4);
  animation: spinSlow 25s linear infinite;
  pointer-events: none;
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.consultant-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-card);
  padding: 0.6rem 1.2rem;
  border-radius: var(--border-radius-pill);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark-plum);
  box-shadow: var(--shadow-subtle);
}

.consultant-bio {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.consultant-values {
  display: grid;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.value-box {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.val-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--bg-pink-accent);
  color: var(--dark-plum);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.val-text h4 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
}

.val-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* --- TESTIMONIALS SECTION --- */
.testimonials-section {
  padding: 5rem 0;
  background: var(--bg-main);
}

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

.testimonial-card {
  background: var(--bg-card);
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(199, 125, 141, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card.highlighted-test {
  border-color: var(--primary-rose);
  background: var(--bg-soft-pink);
}

.stars {
  color: #FFC107;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 1.8rem;
  line-height: 1.6;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-rose);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.author-details strong {
  display: block;
  font-size: 0.95rem;
  color: var(--dark-plum);
}

.author-details span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- FAQ SECTION --- */
.faq-section {
  padding: 5rem 0;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(199, 125, 141, 0.2);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-question {
  width: 100%;
  padding: 1.4rem 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-plum);
  text-align: left;
  cursor: pointer;
}

.faq-question i {
  transition: transform 0.3s ease;
  color: var(--primary-rose);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
  padding: 0 1.8rem;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.8rem 1.4rem;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* --- FINAL CTA SECTION --- */
.final-cta-section {
  padding: 4rem 0 6rem;
}

.cta-banner-box {
  background: linear-gradient(135deg, var(--dark-plum) 0%, var(--plum-accent) 100%);
  color: white;
  padding: 4.5rem 3rem;
  text-align: center;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-hover);
}

.cta-title {
  color: white;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.2rem;
  color: var(--bg-pink-accent);
  max-width: 650px;
  margin: 0 auto 2.5rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
}

/* --- FOOTER --- */
.site-footer {
  background-color: var(--dark-plum);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 2.5rem;
  font-size: 0.9rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.footer-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: white;
  letter-spacing: 2px;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a:hover {
  color: var(--bg-pink-accent);
}

.footer-disclaimer {
  max-width: 800px;
  font-size: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  line-height: 1.6;
}

/* --- FLOATING WHATSAPP BUTTON --- */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 62px;
  height: 62px;
  background-color: var(--whatsapp-green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: var(--transition-fast);
  animation: pulseGreen 2.5s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  background-color: var(--whatsapp-dark);
}

.tooltip-whatsapp {
  position: absolute;
  right: 75px;
  background: white;
  color: var(--dark-plum);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: var(--shadow-medium);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.floating-whatsapp:hover .tooltip-whatsapp {
  opacity: 1;
}

@keyframes pulseGreen {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
  .hero-title { font-size: 2.8rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid, .ingredients-grid, .testimonials-grid, .luxury-categories-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .header-container { height: 70px; }
  .main-nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--bg-card);
    padding: 2rem;
    box-shadow: var(--shadow-medium);
    display: none;
  }
  .main-nav.active { display: block; }
  .main-nav ul { flex-direction: column; gap: 1.2rem; }
  .mobile-toggle { display: block; }

  .hero-grid, .consultant-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-title { font-size: 2.4rem; }
  .floating-badge { display: none; }

  .benefits-grid, .ingredients-grid, .testimonials-grid, .products-grid, .luxury-categories-grid { grid-template-columns: 1fr; }
  .cta-title { font-size: 2.2rem; }
}
