/* ================================================
   NAILS STUDIO – LUXURY REDESIGN
   Paleta: Champagne · Cream Ivory · Rose Gold · Dusty Mauve · Soft Sage
   ================================================ */

:root {
    /* Core Palette */
    --cream:       #FAF6F2;
    --ivory:       #F5EEE8;
    --champagne:   #EDD9C0;
    --rose-gold:   #C4956A;
    --rose-gold-d: #A07850;
    --blush:       #E8C5B8;
    --blush-deep:  #C9938A;
    --mauve:       #7D5A5A;
    --mauve-light: #B89898;
    --sage:        #8A998A;
    --dark:        #2C1E1E;
    --dark-2:      #3E2C2C;
    --text:        #4A3333;
    --text-muted:  #9A7D7D;
    --border:      #E8D8D0;
    --white:       #FFFFFF;

    /* Shadows */
    --shadow-sm:  0 2px 12px rgba(196,149,106,0.10);
    --shadow-md:  0 6px 28px rgba(196,149,106,0.18);
    --shadow-lg:  0 12px 48px rgba(196,149,106,0.22);
    --shadow-xl:  0 24px 72px rgba(44,30,30,0.15);

    /* Radii */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 48px;

    /* Fonts */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'Inter', sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--cream);
    line-height: 1.65;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }

/* ===== CONTAINER ===== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.12;
    color: var(--dark);
    letter-spacing: -0.01em;
}
h1 { font-size: clamp(3rem, 6.5vw, 5.5rem); }
h2 { font-size: clamp(2.2rem, 4vw, 3.2rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.1rem; font-family: var(--font-body); }
em { font-style: italic; color: var(--rose-gold); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 30px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: .93rem;
    border: 1.5px solid transparent;
    transition: all .3s ease;
    cursor: pointer;
    letter-spacing: .3px;
}
.btn-primary {
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--blush-deep) 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(196,149,106,0.45);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(196,149,106,0.55);
}
.btn-ghost {
    background: rgba(255,255,255,0.15);
    color: white;
    border-color: rgba(255,255,255,.5);
    backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,.28); transform: translateY(-2px); }
.btn-outline {
    background: transparent;
    color: var(--rose-gold);
    border-color: var(--rose-gold);
}
.btn-outline:hover { background: var(--rose-gold); color: white; }
.btn-xl { padding: 18px 40px; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; }

/* ===== FADE IN ===== */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 60px; }
.section-label {
    display: inline-block;
    color: var(--rose-gold);
    font-weight: 600;
    font-size: .78rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.section-sub { color: var(--text-muted); font-size: 1.05rem; max-width: 560px; margin: 14px auto 0; line-height: 1.75; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(250,246,242,0.92);
    border-bottom: 1px solid var(--border);
    transition: box-shadow .3s;
}
@media (min-width: 769px) {
    .navbar { backdrop-filter: blur(16px); }
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.admin-access {
    background: #000000;
    color: #FFFFFF !important;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.75rem !important;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.8px;
    margin-left: 10px;
    border: 1px solid #C4956A;
    transition: all 0.3s ease;
}
.nav-links a.admin-access { color: #FFFFFF !important; }
.admin-access:hover {
    background: var(--rose-gold);
    border-color: var(--rose-gold);
}
.admin-access i { margin-right: 4px; font-size: 0.7rem; }
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { font-size: 1.7rem; }
.logo-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: .5px;
}
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
    font-size: .88rem;
    font-weight: 500;
    letter-spacing: .5px;
    color: var(--text-muted);
    position: relative;
    padding-bottom: 3px;
    transition: color .25s;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 1.5px;
    background: var(--rose-gold);
    border-radius: 2px;
    transition: width .3s ease;
}
.nav-links a:hover { color: var(--rose-gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { padding: 10px 22px; font-size: .87rem; }
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 4px;
}
.mobile-menu span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; }

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('img_hero_bg.jpg');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(44,30,30,0.72) 0%,
        rgba(62,44,44,0.55) 45%,
        rgba(196,149,106,0.15) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 0 80px;
    max-width: 680px;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--champagne);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
    content: '';
    display: block;
    width: 28px; height: 1px;
    background: var(--champagne);
    opacity: .6;
}
.hero-title { color: var(--white); margin-bottom: 20px; font-weight: 300; }
.hero-title strong { font-weight: 700; display: block; }
.hero-title em { color: var(--champagne); font-style: italic; }
.hero-subtitle {
    color: rgba(255,255,255,.72);
    font-size: 1.1rem;
    margin-bottom: 44px;
    line-height: 1.75;
    max-width: 480px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }

/* Hero stats glass card */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(12px);
    overflow: hidden;
    width: fit-content;
}
.hero-stat {
    padding: 20px 32px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.12);
}
.hero-stat:last-child { border-right: none; }
.stat-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}
.stat-plus { font-size: 1.3rem; color: var(--champagne); font-weight: 700; }
.stat-label { display: block; color: rgba(255,255,255,.5); font-size: .73rem; margin-top: 5px; letter-spacing: 1px; text-transform: uppercase; }

/* Scroll hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 32px; left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,.35);
    font-size: .75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2.5s ease infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    60% { transform: translateX(-50%) translateY(7px); }
}

/* ============================================
   TAGLINE STRIP
   ============================================ */
.tagline-strip {
    background: var(--champagne);
    overflow: hidden;
    padding: 14px 0;
    border-top: 1px solid var(--blush);
    border-bottom: 1px solid var(--blush);
}
.tagline-track {
    display: flex;
    gap: 36px;
    white-space: nowrap;
    animation: scroll-left 30s linear infinite;
    width: max-content;
}
.tagline-track span {
    color: var(--mauve);
    font-weight: 500;
    font-size: .88rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.tagline-track .dot { color: var(--rose-gold); }
@keyframes scroll-left {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ============================================
   SERVICIOS
   ============================================ */
.section-servicios { padding: 110px 0; background: var(--white); }
.servicios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.servicio-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform .35s ease, box-shadow .35s ease;
}
.servicio-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.servicio-card.featured-service {
    border-color: var(--champagne);
    box-shadow: var(--shadow-md);
}
.featured-badge {
    position: absolute;
    top: 14px; right: 14px;
    background: linear-gradient(135deg, var(--rose-gold), var(--blush-deep));
    color: white;
    font-size: .72rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    z-index: 2;
    letter-spacing: .5px;
    text-transform: uppercase;
}
.servicio-img {
    height: 220px;
    position: relative;
    overflow: hidden;
}
.servicio-img img {
    width: 100%; height: 100%;
    transition: transform .5s ease;
}
.servicio-card:hover .servicio-img img { transform: scale(1.06); }
.servicio-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(44,30,30,0.35) 100%);
}
.servicio-body { padding: 26px; }
.servicio-body h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark);
}
.servicio-body > p { color: var(--text-muted); font-size: .9rem; margin-bottom: 18px; line-height: 1.7; }
.servicio-includes { display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
.servicio-includes li {
    display: flex; align-items: center;
    gap: 9px; font-size: .83rem; color: var(--text-muted);
}
.servicio-includes i { color: var(--rose-gold); font-size: .7rem; min-width: 12px; }
.servicio-link {
    display: inline-flex; align-items: center;
    gap: 6px; color: var(--rose-gold);
    font-weight: 600; font-size: .85rem;
    transition: gap .25s;
}
.servicio-link:hover { gap: 10px; }

/* ============================================
   WHY US
   ============================================ */
.section-why {
    padding: 110px 0;
    background: var(--ivory);
    position: relative;
    overflow: hidden;
}
.why-bg {
    position: absolute;
    inset: 0;
    background-image: url('img_nailart.jpg');
    background-size: cover;
    background-position: center;
    opacity: .06;
}
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 2; }
.why-text .section-label, .why-text h2 { text-align: left; }
.why-text h2 { margin-bottom: 18px; }
.why-text > p { color: var(--text-muted); margin-bottom: 36px; line-height: 1.85; }
.why-points { display: flex; flex-direction: column; gap: 22px; }
.why-point { display: flex; gap: 18px; align-items: flex-start; }
.why-icon {
    width: 52px; height: 52px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    color: var(--rose-gold);
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}
.why-point h4 { margin-bottom: 4px; color: var(--dark); }
.why-point p { font-size: .88rem; color: var(--text-muted); line-height: 1.65; }

/* Why visual */
.why-visual { display: flex; flex-direction: column; gap: 16px; }
.why-visual-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 360px;
    box-shadow: var(--shadow-lg);
}
.why-visual-main img { width: 100%; height: 100%; }
.why-visual-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-visual-small {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 160px;
    box-shadow: var(--shadow-sm);
}
.why-visual-small img { width: 100%; height: 100%; }

/* ============================================
   GALERÍA
   ============================================ */
.section-galeria {
    padding: 110px 0;
    background: var(--white);
}
.gallery-tabs {
    display: flex; justify-content: center;
    gap: 10px; flex-wrap: wrap;
    margin-bottom: 40px;
}
.gallery-tab {
    padding: 9px 22px;
    border-radius: 30px;
    border: 1.5px solid var(--border);
    background: white;
    color: var(--text-muted);
    font-weight: 600;
    font-size: .83rem;
    letter-spacing: .5px;
    text-transform: uppercase;
    transition: all .25s;
}
.gallery-tab:hover, .gallery-tab.active {
    background: var(--rose-gold);
    color: white;
    border-color: var(--rose-gold);
    box-shadow: 0 4px 16px rgba(196,149,106,0.4);
}

/* Masonry-style grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 16px;
}
.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}
.gallery-item img {
    width: 100%; height: 100%;
    transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

/* Gallery items with placeholder backgrounds for those without images */
.gallery-placeholder-card {
    width: 100%; height: 100%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 12px;
    font-size: 3rem;
    color: var(--text-muted);
    font-family: var(--font-display);
}
.gallery-placeholder-card small {
    font-size: .88rem;
    font-weight: 500;
    color: var(--text-muted);
    font-family: var(--font-body);
}

/* Gallery overlay on hover */
.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44,30,30,0);
    display: flex; align-items: center; justify-content: center;
    transition: background .3s;
    color: white;
    font-size: 1.8rem;
    opacity: 0;
    transition: all .3s;
}
.gallery-item:hover .gallery-item-overlay { background: rgba(44,30,30,.35); opacity: 1; }

.gallery-cta { text-align: center; margin-top: 52px; }
.gallery-cta p { color: var(--text-muted); margin-bottom: 18px; font-family: var(--font-display); font-size: 1.2rem; font-style: italic; }

/* ============================================
   ANTES/DESPUÉS
   ============================================ */
.section-antesdespues {
    padding: 110px 0;
    background: var(--ivory);
    position: relative;
    overflow: hidden;
}
.ad-section-bg {
    position: absolute;
    inset: 0;
    background-image: url('img_manicure.jpg');
    background-size: cover;
    background-position: center top;
    opacity: .07;
}
.ad-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; position: relative; z-index: 2; }
.ad-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: box-shadow .3s;
}
.ad-card:hover { box-shadow: var(--shadow-md); }
.ad-split { display: grid; grid-template-columns: 1fr 1fr; }
.ad-half { position: relative; }
.ad-half span {
    position: absolute;
    top: 10px; left: 10px;
    background: rgba(44,30,30,.6);
    color: rgba(255,255,255,.9);
    font-size: .72rem; font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    z-index: 2;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.ad-img {
    height: 170px;
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem; color: rgba(0,0,0,.2);
}
.ad-img.antes { background: linear-gradient(135deg, #e8e0d8, #d0c8c0); }
.ad-img.despues-1 { background: linear-gradient(135deg, #fce4ec, #f48fb1); }
.ad-img.despues-2 { background: linear-gradient(135deg, #e8eaf6, #9fa8da); }
.ad-img.despues-3 { background: linear-gradient(135deg, #e0f7fa, #80cbc4); }
.ad-label {
    text-align: center;
    padding: 14px 16px;
    font-size: .88rem;
    font-weight: 600;
    color: var(--text);
    border-top: 1px solid var(--border);
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1rem;
}

/* ============================================
   PRECIOS
   ============================================ */
.section-precios {
    padding: 110px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}
.precios-bg {
    position: absolute;
    inset: 0;
    background-image: url('img_nailart.jpg');
    background-size: cover;
    background-position: center;
    opacity: .12;
}
.precios-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44,30,30,0.92) 0%, rgba(62,44,44,0.88) 100%);
}
.section-precios .section-header { position: relative; z-index: 2; }
.section-precios .section-label { color: var(--champagne); }
.section-precios h2 { color: white; }
.section-precios .section-sub { color: rgba(255,255,255,.55); }

.precios-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; position: relative; z-index: 2; }
.precio-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all .3s;
}
.precio-card:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.precio-card.featured-precio {
    border-color: var(--champagne);
    background: rgba(237,217,192,0.12);
}
.featured-ribbon {
    text-align: center;
    background: linear-gradient(135deg, var(--rose-gold), var(--blush-deep));
    color: white;
    font-size: .75rem;
    font-weight: 700;
    padding: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.precio-header {
    padding: 30px 24px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.precio-header-img {
    height: 160px;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    overflow: hidden;
}
.precio-header-img img { width: 100%; height: 100%; }
.precio-emoji { font-size: 2.5rem; display: block; margin-bottom: 10px; }
.precio-header h3 { color: white; font-size: 1.3rem; }
.precio-list { padding: 8px 22px 22px; }
.precio-list li {
    display: flex; justify-content: space-between; align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: .88rem;
}
.precio-list li:last-child { border-bottom: none; }
.precio-list li span { color: rgba(255,255,255,.55); }
.precio-list li strong { color: white; font-weight: 700; }
.precio-list li.precio-promo span { color: var(--champagne); font-weight: 600; }
.precio-list li.precio-promo strong { color: var(--champagne); }
.precio-card .btn { margin: 0 22px 22px; width: calc(100% - 44px); }
.precios-note { text-align: center; margin-top: 32px; font-size: .8rem; color: rgba(255,255,255,.3); position: relative; z-index: 2; }

/* ============================================
   TESTIMONIOS
   ============================================ */
.section-testimonios { padding: 110px 0; background: var(--cream); }
.testimonios-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonio-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}
.testimonio-card::before {
    content: '"';
    position: absolute;
    top: -10px; left: 20px;
    font-family: var(--font-display);
    font-size: 8rem;
    color: var(--champagne);
    opacity: .4;
    line-height: 1;
    pointer-events: none;
}
.testimonio-stars { color: var(--rose-gold); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonio-card > p {
    color: var(--text-muted);
    font-size: .93rem;
    line-height: 1.8;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}
.testimonio-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--ivory);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    border: 2px solid var(--border);
}
.testimonio-author strong { display: block; font-size: .95rem; color: var(--dark); font-family: var(--font-display); }
.testimonio-author span { font-size: .78rem; color: var(--text-muted); }

/* ============================================
   CONTACTO
   ============================================ */
.section-contacto {
    padding: 110px 0;
    background: var(--ivory);
    position: relative;
    overflow: hidden;
}
.contacto-bg {
    position: absolute;
    inset: 0;
    background-image: url('img_pedicure.jpg');
    background-size: cover;
    background-position: center;
    opacity: .08;
}
.contacto-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; position: relative; z-index: 2; }
.contacto-info .section-label,
.contacto-info h2 { text-align: left; }
.contacto-info h2 { margin-bottom: 16px; }
.contacto-info > p { color: var(--text-muted); margin-bottom: 36px; line-height: 1.85; }
.contacto-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.contacto-item { display: flex; gap: 16px; align-items: flex-start; }
.contacto-icon {
    width: 46px; height: 46px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    color: var(--rose-gold);
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}
.contacto-item strong { display: block; color: var(--dark); margin-bottom: 2px; font-size: .95rem; }
.contacto-item p { color: var(--text-muted); font-size: .88rem; line-height: 1.55; }

.contacto-right { display: flex; flex-direction: column; gap: 20px; }
.contacto-hero-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 280px;
    box-shadow: var(--shadow-lg);
}
.contacto-hero-img img { width: 100%; height: 100%; }
.mapa-placeholder {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    height: 200px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 12px;
    color: var(--text-muted);
    text-align: center;
    box-shadow: var(--shadow-sm);
}
.mapa-placeholder i { font-size: 2.5rem; color: var(--rose-gold); }
.mapa-placeholder small { font-size: .8rem; color: var(--mauve-light); }
.contacto-social { display: flex; gap: 12px; flex-wrap: wrap; }
.social-btn {
    display: flex; align-items: center; gap: 8px;
    padding: 11px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: .85rem;
    transition: all .25s;
    color: white;
}
.social-btn.instagram { background: linear-gradient(135deg, #f9a825, #e91e63, #7b1fa2); }
.social-btn.facebook  { background: #1877f2; }
.social-btn.tiktok    { background: #010101; }
.social-btn:hover     { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark);
    padding: 72px 0 0;
    position: relative;
}
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 56px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: white; margin-bottom: 14px; }
.footer-brand > p { color: rgba(255,255,255,.4); font-size: .88rem; margin-bottom: 24px; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 38px; height: 38px;
    background: rgba(255,255,255,.07);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.5);
    transition: all .25s;
}
.footer-social a:hover { background: var(--rose-gold); color: white; transform: translateY(-2px); }
.footer-col h4 { color: rgba(255,255,255,.8); font-size: .85rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px; font-family: var(--font-body); }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { color: rgba(255,255,255,.4); font-size: .87rem; transition: color .25s; }
.footer-col a:hover { color: var(--champagne); }
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.footer-bottom p { color: rgba(255,255,255,.28); font-size: .8rem; }
.footer-credit strong { color: var(--champagne); }

/* ============================================
   BOOKING MODAL
   ============================================ */
.booking-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.booking-modal.active { display: flex; }

.booking-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44,30,30,0.85);
    backdrop-filter: blur(8px);
}

.booking-modal-content {
    position: relative;
    background: var(--cream);
    width: 100%;
    max-width: 540px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 40px;
    animation: modal-up 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes modal-up {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.booking-close {
    position: absolute;
    top: 20px; right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-muted);
    line-height: 1;
    transition: color 0.2s;
}
.booking-close:hover { color: var(--rose-gold); }

.booking-badge {
    display: inline-block;
    background: var(--champagne);
    color: var(--rose-gold-d);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.booking-header p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 20px; line-height: 1.6; }

.booking-service-select {
    margin-bottom: 15px;
}
.booking-service-select label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.booking-service-select select {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
}

.calendly-container {
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    overflow: hidden;
    margin-bottom: 20px;
}

.booking-flow-note {
    background: var(--ivory);
    padding: 15px;
    border-radius: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}
.booking-flow-note strong { color: var(--rose-gold-d); }
.booking-flow-note i { color: var(--rose-gold); margin-right: 5px; }

.booking-details {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 24px;
}

.booking-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--ivory);
}
.booking-row span { font-weight: 600; color: var(--dark); font-size: 0.95rem; }
.booking-row select {
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid var(--border);
    font-family: var(--font-body);
    font-size: 0.9rem;
    background: var(--cream);
    color: var(--text);
}

.booking-summary { display: flex; flex-direction: column; gap: 8px; }
.summary-line { display: flex; justify-content: space-between; font-size: 0.95rem; }
.summary-line strong { color: var(--dark); }
.summary-line.deposit-line { 
    margin-top: 8px; 
    padding-top: 12px; 
    border-top: 2px dashed var(--ivory);
    font-size: 1.05rem;
}
.summary-line .highlight { color: var(--rose-gold-d); font-size: 1.2rem; font-family: var(--font-display); }

.summary-note {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 12px;
    display: flex;
    gap: 8px;
    font-style: italic;
}
.summary-note i { color: var(--rose-gold); }

.payment-methods { margin-bottom: 30px; }
.payment-methods h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 12px; }
.methods-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.method-card {
    border: 2px solid var(--ivory);
    border-radius: 12px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s;
}
.method-card i { font-size: 1.4rem; color: var(--text-muted); }
.method-card span { font-size: 0.75rem; font-weight: 600; color: var(--text-muted); text-align: center; }
.method-card.active { border-color: var(--rose-gold); background: var(--ivory); }
.method-card.active i { color: var(--rose-gold); }
.method-card.active span { color: var(--dark); }

.secure-text {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.secure-text i { color: var(--sage); }

/* Hidden steps */
.booking-step.hidden { display: none; }

/* Loader */
.payment-loader {
    text-align: center;
    padding: 60px 0;
}
.loader-circle {
    width: 50px; height: 50px;
    border: 3px solid var(--ivory);
    border-top: 3px solid var(--rose-gold);
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Success */
.success-content {
    text-align: center;
    padding: 20px 0;
}
.success-icon {
    width: 70px; height: 70px;
    background: var(--sage);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 24px;
    box-shadow: 0 8px 20px rgba(138,153,138,0.4);
}
.success-content h3 { font-size: 1.8rem; margin-bottom: 12px; }
.success-content p { color: var(--text-muted); margin-bottom: 25px; line-height: 1.7; font-size: 0.9rem; }

/* Receipt elements */
.receipt-inputs {
    display: flex; gap: 15px; margin-bottom: 20px;
}
.receipt-row { flex: 1; text-align: left; }
.receipt-row label { font-size: 0.75rem; font-weight: 700; color: var(--rose-gold-d); display: block; margin-bottom: 5px; text-transform: uppercase; }
.receipt-row input {
    width: 100%; padding: 10px; border: 1px solid var(--border); border-radius: 8px; font-family: var(--font-body);
}

.receipt-box {
    background: var(--white); border: 1px solid var(--border); border-radius: 12px; text-align: left; overflow: hidden; margin-bottom: 25px;
}
.receipt-header {
    background: var(--ivory); padding: 10px 15px; border-bottom: 1px solid var(--border);
}
.receipt-header span { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; color: var(--text-muted); }
.receipt-body { padding: 15px; }
.receipt-body p { margin-bottom: 8px; font-size: 0.88rem; color: var(--text); display: flex; justify-content: space-between; }
.receipt-body strong { color: var(--dark); }

.badge-success {
    background: #e8f5e9; color: #2e7d32; padding: 2px 8px; border-radius: 4px; font-weight: 600; font-size: 0.75rem;
}

.btn-whatsapp {
    background: #25d366; color: white; border: none; transition: 0.3s;
}
.btn-whatsapp:hover { background: #1ebe57; transform: translateY(-2px); box-shadow: 0 4px 15px rgba(37,211,102,0.3); }

.btn-link {
    background: none; border: none; color: var(--text-muted); text-decoration: underline; margin-top: 15px; font-size: 0.85rem; cursor: pointer;
}

@media (max-width: 580px) {
    .booking-modal-content { padding: 30px 20px; }
    .methods-grid { grid-template-columns: 1fr; }
    .receipt-inputs { flex-direction: column; gap: 10px; }
}


/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 60px; height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-size: 1.9rem;
    box-shadow: 0 6px 28px rgba(37,211,102,.55);
    z-index: 999;
    transition: all .3s;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 10px 40px rgba(37,211,102,.7); }

/* Subtle WhatsApp pulse ring */
.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37,211,102,.4);
    animation: pulse-ring 2.5s ease infinite;
}
@keyframes pulse-ring {
    0%   { transform: scale(1); opacity: .6; }
    70%  { transform: scale(1.3); opacity: 0; }
    100% { opacity: 0; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .container { padding: 0 40px; }
    .servicios-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .precios-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .why-grid { grid-template-columns: 1fr; gap: 48px; }
    .why-text { text-align: center; }
    .why-text .section-label, .why-text h2 { text-align: center; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .ad-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-content { gap: 40px; }
}

@media (max-width: 768px) {
    .container { padding: 0 24px; }
    
    /* NAV DRAWER */
    .nav-links, .nav-cta { display: none; }
    .mobile-menu { display: flex; z-index: 1050; position: relative; }
    
    /* Transform menu icon to X */
    .mobile-menu.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .mobile-menu.open span:nth-child(2) { opacity: 0; }
    .mobile-menu.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    /* Menú lateral blanco sin oscurecer fondo */
    .nav-links.open {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 0; right: 0;
        height: 100vh !important;
        width: 80% !important;
        max-width: 320px;
        background: #FFFFFF !important;
        padding: 100px 32px 32px;
        gap: 0;
        z-index: 1040;
        box-shadow: -15px 0 40px rgba(0,0,0,0.2);
        border-left: 1px solid var(--border);
        overflow-y: auto;
        transform: translateX(0);
        transition: transform 0.3s ease;
    }
    
    .nav-links a { color: var(--dark) !important; font-size: 1.2rem !important; width: 100%; display: block; font-weight: 600; padding: 15px 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
    .nav-links a.admin-access { 
        color: #FFFFFF !important; 
        background: #000000; 
        padding: 16px 18px; 
        border-radius: 35px;
        margin-top: 15px;
        border: 1px solid var(--rose-gold);
    }

    /* Hero adjustments */
    .hero { min-height: auto; padding-top: 70px; }
    .hero-content { padding: 80px 0 60px; text-align: center; margin: 0 auto; }
    .hero-subtitle { margin: 0 auto 44px; }
    .hero-actions { justify-content: center; }
    .hero-stats { margin: 0 auto; width: 100%; border-radius: var(--radius-md); }
    .hero-stat { width: 100%; border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); padding: 16px; }
    .hero-stat:last-child { border-bottom: none; }
    
    .btn { width: 100%; justify-content: center; padding: 18px 24px; font-size: 1rem; }
    .nav-cta { margin-bottom: 10px; }

    /* Grids to 1 column */
    .servicios-grid, .precios-grid, .testimonios-grid { grid-template-columns: 1fr; }
    .ad-grid { grid-template-columns: 1fr; }
    .contacto-grid { grid-template-columns: 1fr; gap: 48px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
    
    /* Footer */
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .footer-brand, .footer-social { align-items: center; justify-content: center; }
    .footer-bottom .container { flex-direction: column; gap: 12px; }
    
    /* Why Visual */
    .why-visual-row { grid-template-columns: 1fr 1fr; }
    
    /* Booking Modal to Bottom Sheet */
    .booking-modal-content {
        margin-top: auto;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        max-height: 95vh;
        animation: slideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }
    @keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
    .gallery-item.tall, .gallery-item.wide { grid-row: span 1; grid-column: span 1; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-title { font-size: 3.2rem; }
    .section-header h2 { font-size: 2.6rem; }
    .ad-split { grid-template-columns: 1fr; }
    .ad-half span { top: 6px; left: 6px; padding: 2px 8px; font-size: 0.65rem; }
    .ad-img { height: 140px; }
}

/* Fix for background scroll lock */
body.no-scroll { overflow: hidden; }
