/* ==========================================================================
   WEB2 - SALÓN DE BELLEZA & SPA DE LUJO | ESTILOS PRINCIPALES
   ========================================================================== */

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

:root {
    --soft-lilac: #DCD0FF;
    --soft-lilac-hover: #cfc1fa;
    --white: #FFFFFF;
    --gold: #D4A84F;
    --gold-light: #f5e6c8;
    --gold-glow: rgba(212, 168, 79, 0.35);
    --deep-plum: #30243D;
    --deep-plum-dark: #22192c;
    --lavender-bg: #F7F4FC;
    --text-dark: #2c2236;
    --text-muted: #6b5e78;
    --font-heading: 'Playfair Display', 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    --font-scale: 1;
    --border-light: rgba(220, 208, 255, 0.4);
    --shadow-subtle: 0 10px 30px rgba(48, 36, 61, 0.05);
    --shadow-luxury: 0 20px 45px rgba(48, 36, 61, 0.08);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);

    /* ===== VARIABLES EDITABLES DESDE EL PANEL VISUAL ===== */
    /* Tarjetas de Servicios */
    --card-bg: #FFFFFF;
    --card-title-color: #30243D;
    --card-text-color: #6b5e78;
    --card-btn-color: #D4A84F;
    --card-border-color: rgba(220, 208, 255, 0.4);
    --card-badge-bg: #DCD0FF;

    /* Sección Servicios */
    --services-section-bg: #F7F4FC;
    --services-tag-color: #D4A84F;
    --services-title-color: #30243D;
    --services-subtitle-color: #6b5e78;

    /* Sección Frase de Marca */
    --brand-section-bg: #FFFFFF;
    --brand-title-color: #30243D;
    --brand-subtitle-color: #6b5e78;

    /* Sección Experiencia */
    --exp-section-bg: #F7F4FC;
    --exp-title-color: #30243D;
    --exp-text-color: #6b5e78;
    --exp-benefit-bg: #FFFFFF;
    --exp-benefit-text: #30243D;

    /* Sección Hombres */
    --men-section-bg: #30243D;
    --men-tag-color: #D4A84F;
    --men-title-color: #FFFFFF;
    --men-text-color: rgba(255,255,255,0.82);

    /* Botón principal (dorado) */
    --btn-gold-bg: #D4A84F;
    --btn-gold-text: #30243D;

    /* Navbar */
    --navbar-bg: rgba(255,255,255,0.95);
    --navbar-brand-color: #30243D;
    --navbar-link-color: #30243D;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: calc(16px * var(--font-scale));
}

body {
    background-color: var(--white);
    color: var(--text-dark);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .brand-title, .quote-font {
    font-family: var(--font-heading);
    font-weight: 700;
}

/* ==========================================================================
   2. NAVBAR
   ========================================================================== */
.navbar-wrapper {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}

.navbar {
    max-width: 1300px;
    margin: 0 auto;
    padding: 16px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.brand-logo .brand-main {
    font-size: 22px;
    font-weight: 700;
    color: var(--deep-plum);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.brand-logo .brand-sub {
    font-size: 10px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 4px;
    text-transform: uppercase;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 4px;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1.5px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--deep-plum);
}

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

.btn-gold {
    background: linear-gradient(135deg, #e3be6d, var(--gold));
    color: var(--deep-plum) !important;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 12px 26px;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 4px 18px var(--gold-glow);
    border: none;
    cursor: pointer;
    display: inline-block;
    transition: var(--transition);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 168, 79, 0.45);
    background: linear-gradient(135deg, var(--gold), #c09438);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: transparent;
    border: none;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--deep-plum);
    transition: var(--transition);
}

/* ==========================================================================
   1. HERO PRINCIPAL CON SLIDER AUTOMÁTICO
   ========================================================================== */
.hero-container {
    position: relative;
    height: calc(100vh - 76px);
    min-height: 600px;
    width: 100%;
    overflow: hidden;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease-in-out, transform 8s ease;
    transform: scale(1.05);
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(34, 25, 44, 0.45) 0%, rgba(48, 36, 61, 0.65) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 24px;
    color: var(--white);
}

.hero-tag {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--soft-lilac);
    background: rgba(220, 208, 255, 0.15);
    backdrop-filter: blur(8px);
    padding: 8px 20px;
    border-radius: 20px;
    border: 1px solid rgba(220, 208, 255, 0.3);
    margin-bottom: 22px;
}

.hero-title {
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1.12;
    margin-bottom: 22px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

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

.hero-title span.highlight-gold {
    color: var(--gold);
}

.hero-desc {
    font-size: clamp(16px, 2vw, 19px);
    font-weight: 300;
    max-width: 680px;
    margin-bottom: 12px;
    color: #f1ecf7;
}

.hero-subdesc {
    font-size: 14px;
    font-style: italic;
    color: var(--soft-lilac);
    margin-bottom: 34px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-outline-white {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    padding: 12px 26px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--deep-plum);
    border-color: var(--white);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--gold);
    color: var(--deep-plum);
    border-color: var(--gold);
}

.slider-btn.prev { left: 24px; }
.slider-btn.next { right: 24px; }

.slider-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 32px;
    height: 4px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--gold);
    width: 48px;
}

/* ==========================================================================
   4. FRASE DE MARCA
   ========================================================================== */
.brand-statement {
    padding: 100px 24px;
    background: var(--brand-section-bg);
    text-align: center;
}

.statement-box {
    max-width: 800px;
    margin: 0 auto;
}

.statement-box h2 {
    font-size: clamp(28px, 4.5vw, 44px);
    color: var(--brand-title-color);
    letter-spacing: 1px;
    margin-bottom: 20px;
    line-height: 1.25;
}

.statement-box p {
    font-size: 18px;
    color: var(--brand-subtitle-color);
    font-weight: 300;
    margin-bottom: 28px;
}

.gold-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto;
}

/* ==========================================================================
   5. SECCIÓN DE SERVICIOS
   ========================================================================== */
.services-section {
    padding: 90px 24px;
    scroll-margin-top: 130px;
    background: var(--services-section-bg);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 54px auto;
}

.section-tag {
    font-size: 12px;
    font-weight: 700;
    color: var(--services-tag-color);
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(30px, 4vw, 42px);
    color: var(--services-title-color);
    margin-bottom: 14px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--services-subtitle-color);
}

.luxury-services-grid {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.service-card-luxury {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--card-border-color);
    box-shadow: var(--shadow-subtle);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card-luxury:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-luxury);
    border-color: var(--soft-lilac);
}

.card-img-wrap {
    height: 300px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

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

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

.card-badge-icon {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--card-badge-bg);
    color: var(--deep-plum);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 7px 18px rgba(55, 24, 62, 0.22);
    border: 3px solid rgba(255,255,255,0.96);
}

.card-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-body h3 {
    font-size: 24px;
    color: var(--card-title-color);
    margin-bottom: 12px;
}

.card-body p {
    font-size: 14px;
    color: var(--card-text-color);
    margin-bottom: 22px;
    line-height: 1.6;
}

.btn-card-more {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--card-btn-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.btn-card-more:hover {
    color: var(--deep-plum);
    transform: translateX(4px);
}

/* ==========================================================================
   TIENDA DE PRODUCTOS DE BELLEZA & CARRITO
   ========================================================================== */
.products-shop-section {
    padding: 90px 24px;
    background: var(--white);
}

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

.product-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
}

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

.prod-img-wrap {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.prod-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge-stock-web {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.badge-stock-web.in-stock {
    background: #dcfce7;
    color: #166534;
}

.badge-stock-web.out-stock {
    background: #fee2e2;
    color: #991b1b;
}

.prod-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}

.prod-body h4 {
    font-size: 18px;
    color: var(--deep-plum);
    margin-bottom: 6px;
}

.prod-body p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.prod-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--deep-plum);
    margin-bottom: 14px;
}

.btn-add-cart {
    background: var(--soft-lilac);
    color: var(--deep-plum);
    border: 1px solid var(--deep-plum);
    padding: 10px 18px;
    border-radius: 24px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.btn-add-cart:hover:not(:disabled) {
    background: var(--deep-plum);
    color: var(--white);
}

.btn-add-cart:disabled {
    background: #e2e8f0;
    color: #94a3b8;
    border-color: #cbd5e1;
    cursor: not-allowed;
}

/* Apariencia editorial premium para la tienda pública. */
.products-shop-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 108px 24px 116px;
    background:
        radial-gradient(circle at 12% 8%, rgba(212, 175, 55, .16), transparent 24rem),
        radial-gradient(circle at 92% 78%, rgba(50, 36, 61, .1), transparent 30rem),
        linear-gradient(180deg, #fffdf9 0%, #fff 58%, #faf7ff 100%);
}

.products-shop-section::before {
    content: '';
    position: absolute;
    z-index: -1;
    inset: 24px max(18px, calc((100% - 1260px) / 2)) auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,.65), transparent);
}

.products-shop-section .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border: 1px solid rgba(212,175,55,.55);
    border-radius: 999px;
    background: rgba(255,255,255,.72);
    color: #9a6f19;
    letter-spacing: .2em;
    box-shadow: 0 8px 22px rgba(109,79,18,.08);
}

.products-shop-section .section-title {
    margin-top: 18px;
    font-size: clamp(32px, 4.2vw, 54px);
    letter-spacing: -.035em;
    color: var(--deep-plum);
}

.products-shop-section .section-subtitle {
    max-width: 620px;
    margin: 0 auto 46px;
    font-size: 16px;
    line-height: 1.7;
}

.products-grid {
    align-items: stretch;
    gap: 32px;
}

.product-card {
    border: 1px solid rgba(50, 36, 61, .1);
    border-radius: 24px;
    box-shadow: 0 12px 35px rgba(50,36,61,.09);
    background: rgba(255,255,255,.92);
}

.product-card::after {
    content: '';
    position: absolute;
    pointer-events: none;
    inset: 0;
    border: 1px solid transparent;
    border-radius: inherit;
    transition: border-color .28s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212,175,55,.7);
    box-shadow: 0 25px 54px rgba(50,36,61,.18);
}

.product-card:hover::after { border-color: rgba(212,175,55,.55); }

.prod-img-wrap { height: 258px; background: #30243d; }
.prod-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 48%, rgba(31,21,39,.28));
    pointer-events: none;
}

.prod-img-wrap img { transition: transform .55s cubic-bezier(.2,.75,.25,1); }
.product-card:hover .prod-img-wrap img { transform: scale(1.07); }

.badge-stock-web {
    z-index: 1;
    top: 14px;
    right: 14px;
    padding: 7px 11px;
    font-size: 10px;
    letter-spacing: .085em;
    border: 1px solid rgba(255,255,255,.72);
    box-shadow: 0 5px 14px rgba(31,21,39,.16);
}

.badge-stock-web.in-stock { background: #173f32; color: #f4e8b8; }

.prod-body { padding: 25px 25px 26px; gap: 22px; }
.prod-body h4 { font-size: 20px; line-height: 1.25; margin: 7px 0 9px; }
.prod-body p { min-height: 40px; line-height: 1.55; margin: 0; }
.prod-price { font-size: 21px; margin: 0 0 15px; color: var(--deep-plum); }

.btn-add-cart {
    min-height: 46px;
    border: 0;
    border-radius: 13px;
    color: #2e2138;
    background: linear-gradient(135deg, #e7c66d 0%, #d4a84f 48%, #bf8730 100%);
    box-shadow: 0 8px 16px rgba(184,131,38,.22);
    letter-spacing: .065em;
}

.btn-add-cart:hover:not(:disabled) {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #f4db8e, #d8a137 55%, #b97d25);
    color: #24172d;
    box-shadow: 0 12px 22px rgba(184,131,38,.32);
}

@media (max-width: 680px) {
    .products-shop-section { padding: 76px 18px 84px; }
    .products-grid { gap: 22px; }
    .prod-img-wrap { height: 235px; }
}

/* CARRITO FLOTANTE */
.floating-cart-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--deep-plum);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: var(--shadow-luxury);
    cursor: pointer;
    z-index: 1500;
    border: 2px solid var(--gold);
    transition: var(--transition);
}

.floating-cart-btn:hover {
    transform: scale(1.08);
}

.cart-count-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--gold);
    color: var(--deep-plum);
    font-size: 11px;
    font-weight: 800;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* MODAL DEL CARRITO */
.cart-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(48, 36, 61, 0.7);
    backdrop-filter: blur(6px);
    display: none;
    justify-content: flex-end;
    z-index: 2000;
}

.cart-drawer {
    background: var(--white);
    width: 100%;
    max-width: 420px;
    height: 100%;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: -10px 0 30px rgba(0,0,0,0.2);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 16px;
}

.cart-header h3 {
    font-size: 20px;
    color: var(--deep-plum);
}

.cart-items-list {
    flex: 1;
    overflow-y: auto;
    padding: 20px 0;
}

.cart-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 12px;
}

.cart-item-row h5 {
    font-size: 14px;
    color: var(--deep-plum);
}

.cart-footer {
    border-top: 1px solid var(--border-light);
    padding-top: 20px;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 700;
    color: var(--deep-plum);
    margin-bottom: 18px;
}

/* ==========================================================================
   6. EXPERIENCIA DEL SALÓN
   ========================================================================== */
.experience-section {
    padding: 100px 24px;
    background: var(--white);
}

.experience-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.exp-img-box {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-luxury);
}

.exp-img-box img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

.exp-content h2 {
    font-size: clamp(28px, 3.8vw, 42px);
    color: var(--deep-plum);
    margin-bottom: 18px;
    line-height: 1.2;
}

.exp-content > p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.benefits-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    list-style: none;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--lavender-bg);
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--deep-plum);
    border: 1px solid var(--border-light);
}

.benefit-item span {
    font-size: 18px;
}

/* ==========================================================================
   7. POR QUÉ ELEGIRNOS
   ========================================================================== */
.why-us-section {
    padding: 90px 24px;
    background: var(--lavender-bg);
    text-align: center;
}

.why-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.why-card {
    background: var(--white);
    padding: 36px 24px;
    border-radius: 18px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-subtle);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
}

.why-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.why-card h4 {
    font-size: 18px;
    color: var(--deep-plum);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 13px;
    color: var(--text-muted);
}

/* ==========================================================================
   8. GALERÍA MASONRY / PINTEREST
   ========================================================================== */
.gallery-section {
    padding: 90px 24px;
    background: var(--white);
}

.gallery-grid {
    max-width: 1200px;
    margin: 0 auto;
    column-count: 3;
    column-gap: 20px;
}

.gallery-grid:has(.gallery-item:only-child) {
    max-width: 460px;
}

.gallery-empty {
    grid-column: 1 / -1;
    padding: 34px;
    text-align: center;
    color: var(--text-muted);
    background: var(--lavender-bg);
    border-radius: 14px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 28px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(48, 36, 61, 0.16);
    cursor: pointer;
    background: var(--deep-plum);
}

.gallery-item img {
    width: 100%;
    display: block;
    min-height: 420px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(48, 36, 61, 0.72);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    padding: 28px;
    text-align: center;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.35;
    margin-bottom: 12px;
}

.gallery-overlay small {
    display: block;
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
    max-width: 30ch;
}

/* ==========================================================================
   9. TESTIMONIOS CON SLIDER
   ========================================================================== */
.testimonials-section {
    padding: 90px 24px;
    background: var(--lavender-bg);
    text-align: center;
}

.testimonials-slider-container {
    max-width: 760px;
    margin: 0 auto;
    position: relative;
    min-height: 220px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease;
}

.testimonial-card.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.stars {
    color: var(--gold);
    font-size: 20px;
    margin-bottom: 16px;
}

.testimonial-quote {
    font-size: clamp(18px, 2.5vw, 24px);
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--deep-plum);
    margin-bottom: 18px;
    line-height: 1.45;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}

/* ==========================================================================
   10. BANNER PROMOCIÓN / CTA
   ========================================================================== */
.cta-banner {
    background: var(--soft-lilac);
    padding: 80px 24px;
    text-align: center;
    color: var(--deep-plum);
}

.cta-banner h2 {
    font-size: clamp(28px, 4.5vw, 44px);
    margin-bottom: 14px;
    line-height: 1.2;
}

.cta-banner p {
    font-size: 18px;
    margin-bottom: 28px;
    color: #4a3b5c;
}

/* ==========================================================================
   11. RESERVA DE CITA
   ========================================================================== */
.booking-section {
    padding: 100px 24px;
    background: var(--white);
}

.booking-box {
    max-width: 860px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--shadow-luxury);
}

.booking-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

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

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--deep-plum);
    margin-bottom: 8px;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--border-light);
    border-radius: 12px;
    font-size: 14px;
    background: var(--lavender-bg);
    color: var(--text-dark);
    outline: none;
    transition: var(--transition);
}

.form-group input:focus, .form-group select:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-full {
    grid-column: 1 / -1;
}

.btn-booking-submit {
    width: 100%;
    padding: 16px;
    font-size: 14px;
    letter-spacing: 2px;
    margin-top: 10px;
    border-radius: 12px;
}

/* MODAL DE CONFIRMACIÓN ELEGANTE */
.modal-confirm-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(48, 36, 61, 0.7);
    backdrop-filter: blur(6px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-confirm-card {
    background: var(--white);
    border-radius: 24px;
    padding: 44px 36px;
    text-align: center;
    max-width: 440px;
    width: 90%;
    box-shadow: var(--shadow-luxury);
}

.modal-confirm-icon {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--gold);
}

.modal-confirm-card h3 {
    font-size: 26px;
    color: var(--deep-plum);
    margin-bottom: 10px;
}

.modal-confirm-card p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* ==========================================================================
   12. CONTACTO
   ========================================================================== */
.contact-section {
    padding: 90px 24px;
    background: var(--lavender-bg);
}

.contact-grid {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.contact-info-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-subtle);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
}

.contact-item-icon {
    font-size: 22px;
    color: var(--gold);
}

.contact-item-text h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--deep-plum);
    margin-bottom: 2px;
}

.contact-item-text p {
    font-size: 14px;
    color: var(--text-muted);
}

.contact-map-card {
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-luxury);
    border: 1px solid var(--border-light);
}

.contact-map-card iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ==========================================================================
   13. FOOTER
   ========================================================================== */
footer.luxury-footer {
    background: var(--deep-plum);
    color: #e5ddf2;
    padding: 70px 24px 30px;
    text-align: center;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-brand {
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.footer-tagline {
    font-size: 11px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #cdc1e0;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
}

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

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(220, 208, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    border: 1px solid rgba(220, 208, 255, 0.2);
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--gold);
    color: var(--deep-plum);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.footer-copy {
    font-size: 12px;
    color: #8c7d9e;
    border-top: 1px solid rgba(220, 208, 255, 0.1);
    padding-top: 24px;
}

/* ==========================================================================
   14. ANIMACIONES & RESPONSIVE
   ========================================================================== */
.reveal-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

@media (max-width: 992px) {
    .experience-grid, .contact-grid { grid-template-columns: 1fr; }
    .gallery-grid { column-count: 2; }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 76px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 76px);
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        gap: 20px;
        transition: var(--transition);
        box-shadow: var(--shadow-luxury);
    }
    .nav-menu.active { left: 0; }
    .hamburger { display: flex; }
    .booking-form-grid { grid-template-columns: 1fr; }
    .booking-box { padding: 30px 20px; }
    .slider-btn { display: none; }
    .gallery-grid { column-count: 1; }
}

/* ==========================================================================
   SECCIÓN HOMBRES & BARBERÍA MASCULINA
   ========================================================================== */
.men-section {
    padding: 100px 24px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--men-section-bg) 70%, black), var(--men-section-bg) 60%, color-mix(in srgb, var(--men-section-bg) 80%, #6a5080));
    position: relative;
    overflow: hidden;
}

.men-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(212,168,79,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.men-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.men-img-col {
    position: relative;
    height: 560px;
}

.men-img-col img {
    box-shadow: 0 30px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(212,168,79,0.15);
    border: 1px solid rgba(212,168,79,0.2);
}

.men-img-col::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border-bottom: 3px solid var(--gold);
    border-right: 3px solid var(--gold);
    border-radius: 0 0 6px 0;
    pointer-events: none;
}

.men-content-col .section-tag {
    color: var(--men-tag-color);
    background: rgba(212,168,79,0.12);
    border: 1px solid rgba(212,168,79,0.3);
}

.men-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 10px;
}

.men-srv-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(212,168,79,0.15);
    border-radius: 12px;
    padding: 14px;
    transition: all 0.3s ease;
}

.men-srv-item:hover {
    background: rgba(212,168,79,0.08);
    border-color: rgba(212,168,79,0.4);
    transform: translateY(-3px);
}

.men-srv-item strong { display: block; margin-bottom: 4px; }

@media (max-width: 992px) {
    .men-grid { grid-template-columns: 1fr; }
    .men-img-col { height: 350px; }
    .men-services-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .men-services-grid { grid-template-columns: 1fr; }
}
