/* ================= ================= ================= */
/* COLOR SYSTEM & VARIABLE DEFINITIONS               */
/* ================= ================= ================= */
:root {
    /* Color Palette */
    --bg-dark-space: #0f0a1c;
    --bg-dark-card: #171129;
    --bg-dark-card-hover: #221a37;
    
    --accent-orange: #f97316;
    --accent-amber: #f59e0b;
    --accent-magenta: #d946ef;
    --accent-purple: #a855f7;
    --accent-teal: #14b8a6;
    --accent-cyan: #06b6d4;
    
    --text-light: #f3f4f6;
    --text-muted: #9ca3af;
    --text-dark: #1f2937;
    
    /* Gradients */
    --grad-fire: linear-gradient(135deg, var(--accent-orange), var(--accent-amber));
    --grad-neon: linear-gradient(135deg, var(--accent-magenta), var(--accent-purple));
    --grad-fresh: linear-gradient(135deg, var(--accent-teal), var(--accent-cyan));
    --grad-space: linear-gradient(135deg, #171129, #0f0a1c);
    --grad-hero: linear-gradient(180deg, rgba(15, 10, 28, 0.8) 0%, rgba(15, 10, 28, 0.95) 100%);
    
    /* Interactive & Shadow Effects */
    --glass-bg: rgba(23, 17, 41, 0.7);
    --glass-bg-dense: rgba(15, 10, 28, 0.85);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-glow: rgba(217, 70, 239, 0.3);
    
    --glow-orange: 0 0 20px rgba(249, 115, 22, 0.45);
    --glow-magenta: 0 0 20px rgba(217, 70, 239, 0.45);
    --glow-cyan: 0 0 20px rgba(6, 182, 212, 0.45);
    --shadow-premium: 0 15px 35px rgba(0, 0, 0, 0.35);
    
    /* Typography */
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --font-display: 'Playfair Display', serif;
    
    /* Transition Speed */
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* offset navbar height */
}

body {
    background-color: var(--bg-dark-space);
    color: var(--text-light);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Scrollbar customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark-space);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--accent-purple), var(--accent-magenta));
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-orange);
}

/* Reusable Containers */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Common Layout Elements */
section {
    padding: 100px 0;
    position: relative;
}

/* Typography styles */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

p {
    font-weight: 300;
    font-size: 1.05rem;
}

strong {
    font-weight: 600;
}

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

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

/* ================= BUTTONS & BADGES ================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--grad-fire);
    color: var(--text-light);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-orange);
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    transition: 0.5s;
    opacity: 0;
}

.btn-glow:hover::after {
    left: 120%;
    opacity: 1;
    transition: all 0.6s ease;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--glass-border);
    color: var(--text-light);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.btn-call {
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid var(--accent-orange);
    color: var(--accent-orange);
    padding: 10px 20px;
    font-size: 0.85rem;
}

.btn-call:hover {
    background: var(--accent-orange);
    color: var(--text-light);
    box-shadow: var(--glow-orange);
}

.btn-whatsapp-nav {
    background: rgba(20, 184, 166, 0.15);
    border: 1px solid var(--accent-teal);
    color: var(--accent-teal);
    padding: 10px 20px;
    font-size: 0.85rem;
}

.btn-whatsapp-nav:hover {
    background: var(--accent-teal);
    color: var(--text-light);
    box-shadow: var(--glow-cyan);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-orange {
    background: rgba(249, 115, 22, 0.15);
    color: #fdba74;
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.badge-neon {
    background: rgba(217, 70, 239, 0.15);
    color: #f472b6;
    border: 1px solid rgba(217, 70, 239, 0.3);
}

/* ================= SECTION HEADERS ================= */
.section-title-wrapper {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-magenta);
    font-weight: 700;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.8rem;
    color: var(--text-light);
    font-weight: 400;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--grad-neon);
    margin: 18px auto 0;
    border-radius: 2px;
}

.section-lead-text {
    max-width: 650px;
    margin: 20px auto 0;
    color: var(--text-muted);
}

/* ================= PORTADA (WELCOME COVER) ================= */
.cover-section {
    height: 100vh;
    width: 100vw;
    background-image: url('Imágenes/Home.jpeg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: var(--bg-dark-space);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 60px;
    z-index: 10;
}


.cover-scroll-down {
    font-size: 2.2rem;
    color: var(--text-light);
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: var(--transition);
    z-index: 15;
}

.cover-scroll-down a:hover {
    color: var(--accent-orange);
    text-shadow: var(--glow-orange);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-12px);
    }
    60% {
        transform: translateY(-6px);
    }
}

/* ================= NAVBAR ================= */
.navbar-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease, padding 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}

.navbar-header.navbar-visible {
    transform: translateY(0);
    opacity: 1;
}

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

.logo-box {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    /* CSS filter trick to invert the black logo to a beautiful silver/white logo on dark background */
    filter: invert(1) brightness(1.3) contrast(1.1);
    transition: var(--transition);
}

.logo-img:hover {
    filter: invert(1) brightness(1.5) drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1010;
}

.mobile-menu-btn .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-light);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

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

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-orange);
}

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

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

.nav-ctas {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* ================= HERO SECTION ================= */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 80px;
    background-color: var(--bg-dark-space);
    background-image: radial-gradient(circle at top right, rgba(168, 85, 247, 0.08) 0%, transparent 60%);
    position: relative;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 10, 28, 0.5) 0%, rgba(15, 10, 28, 0.95) 100%);
    z-index: 1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 400;
    margin-top: 20px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 30%, #fcd34d 70%, var(--accent-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 550px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

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

.video-frame-glow {
    position: relative;
    border-radius: 20px;
    padding: 8px;
    background: linear-gradient(45deg, var(--accent-orange), var(--accent-magenta), var(--accent-teal));
    box-shadow: 0 15px 50px rgba(168, 85, 247, 0.25);
    width: 100%;
    max-width: 440px;
    aspect-ratio: 9/16; /* mobile aspect ratio standard for hair salons clips */
    overflow: hidden;
    transition: var(--transition);
}

.video-frame-glow:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(217, 70, 239, 0.45);
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.video-overlay-text {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: rgba(15, 10, 28, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    padding: 10px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--accent-orange);
    box-shadow: var(--shadow-premium);
}

.hero-wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 3;
}

.hero-wave-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.hero-wave-bottom .shape-fill {
    fill: var(--bg-dark-space);
}

/* ================= ABOUT SECTION ================= */
.about-section {
    background-color: var(--bg-dark-space);
    background-image: radial-gradient(circle at 10% 20%, rgba(168, 85, 247, 0.05) 0%, transparent 40%),
                      radial-gradient(circle at 90% 80%, rgba(249, 115, 22, 0.05) 0%, transparent 40%);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 80px;
    align-items: center;
}

.about-image-box {
    display: flex;
    justify-content: center;
}

.image-border-decor {
    position: relative;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-purple));
    padding: 6px;
    box-shadow: var(--shadow-premium);
    overflow: hidden;
}

.image-border-decor::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: flowLight 6s infinite linear;
}

@keyframes flowLight {
    0% { transform: translate(-30%, -30%) rotate(45deg); }
    100% { transform: translate(30%, 30%) rotate(45deg); }
}

.about-img {
    border-radius: 18px;
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.8);
}

.about-text-box {
    display: flex;
    flex-direction: column;
}

.about-lead {
    font-size: 1.6rem;
    color: var(--accent-orange);
    margin-bottom: 20px;
    font-weight: 500;
}

.about-text-box p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 30px;
}

.value-card {
    background: var(--bg-dark-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--glass-border-glow);
    background: var(--bg-dark-card-hover);
}

.value-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: var(--text-light);
}

.bg-cyan { background: var(--grad-fresh); }
.bg-purple { background: var(--grad-space); border: 1px solid var(--accent-purple); color: var(--accent-purple); }
.bg-magenta { background: var(--grad-neon); }
.bg-orange { background: var(--grad-fire); }

.value-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.4;
}

/* ================= SERVICES SECTION ================= */
.services-section {
    background-color: #0c0818;
    background-image: radial-gradient(circle at center, rgba(6, 182, 212, 0.04) 0%, transparent 60%);
}

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

.service-card {
    background: var(--bg-dark-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.service-img-overlay {
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

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

.service-card-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(168, 85, 247, 0.15);
    border: 1px solid rgba(168, 85, 247, 0.3);
    color: var(--accent-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card:hover .service-icon-box {
    background: var(--accent-purple);
    color: var(--text-light);
    box-shadow: var(--glow-magenta);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.service-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-cyan);
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--text-light);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Highlights for Star Service: Balayage */
.service-star {
    grid-column: span 2;
    background: linear-gradient(135deg, #171129 0%, #1e1236 100%);
    border: 1px solid rgba(249, 115, 22, 0.25);
    position: relative;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.05);
}

.service-star::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-magenta));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.service-star .service-card-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    justify-content: flex-start;
}

.service-star .service-icon-box {
    background: rgba(249, 115, 22, 0.15);
    border-color: rgba(249, 115, 22, 0.3);
    color: var(--accent-orange);
}

.service-star:hover .service-icon-box {
    background: var(--accent-orange);
    color: var(--text-light);
    box-shadow: var(--glow-orange);
}

.service-star-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--grad-fire);
    color: var(--text-light);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: var(--glow-orange);
    animation: breathing 3s infinite ease-in-out;
}

@keyframes breathing {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.06); }
}

.service-benefits {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 15px;
    margin-bottom: 25px;
}

.service-benefits li {
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-benefits li i {
    color: var(--accent-teal);
}

.service-star .service-action {
    margin-top: 10px;
}

/* Price note block */
.price-note-box {
    margin-top: 60px;
    background: rgba(6, 182, 212, 0.05);
    border: 1px solid rgba(6, 182, 212, 0.15);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.price-note-icon {
    font-size: 1.8rem;
    color: var(--accent-cyan);
}

.price-note-box p {
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ================= PRESS & NEWS SECTION ================= */
.press-section {
    background-color: var(--bg-dark-space);
}

.press-card {
    background: var(--bg-dark-card);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.press-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--grad-neon);
}

.press-card-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: var(--grad-neon);
    color: var(--text-light);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    z-index: 10;
}

.press-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
}

.press-media {
    position: relative;
    min-height: 380px;
}

.press-img-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.press-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
}

.press-source-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(15, 10, 28, 0.9);
    padding: 16px 28px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-premium);
    text-align: center;
}

.press-source-logo span {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-light);
    white-space: nowrap;
}

.press-content {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.press-date {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--accent-orange);
    font-weight: 700;
    margin-bottom: 12px;
}

.press-content h3 {
    font-family: var(--font-display);
    font-size: 2.1rem;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.3;
}

.press-quote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.15rem;
    color: #fdba74;
    border-left: 3px solid var(--accent-orange);
    padding-left: 20px;
    margin-bottom: 24px;
    line-height: 1.5;
}

.press-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 32px;
}

/* ================= GALLERY SECTION ================= */
.gallery-section {
    background-color: #0c0818;
}

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

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1; /* square layout */
    box-shadow: var(--shadow-premium);
    cursor: pointer;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%; /* Centra y eleva el enfoque vertical para recortar marcas de agua del móvil */
    transform: scale(1.1); /* Zoom de seguridad por defecto para ocultar marcas en los bordes */
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 40%, rgba(15, 10, 28, 0.9) 100%);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    transition: opacity 0.4s ease;
}

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

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

.gallery-hover-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-hover-content {
    transform: translateY(0);
}

.gallery-hover-content .tag {
    font-size: 0.8rem;
    font-weight: 700;
    background: var(--grad-neon);
    padding: 4px 10px;
    border-radius: 30px;
    text-transform: uppercase;
}

.gallery-hover-content i {
    font-size: 1.3rem;
    color: var(--accent-magenta);
}

.gallery-footer {
    text-align: center;
    margin-top: 50px;
}

.btn-instagram-link {
    background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
    border: none;
    color: var(--text-light);
}

.btn-instagram-link:hover {
    box-shadow: 0 0 25px rgba(238, 42, 123, 0.5);
    transform: translateY(-3px);
}

/* ================= TESTIMONIALS SECTION ================= */
.testimonials-section {
    background-color: var(--bg-dark-space);
    background-image: radial-gradient(circle at bottom right, rgba(217, 70, 239, 0.04) 0%, transparent 50%);
    overflow: hidden;
}

.testimonials-slider-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 10px;
    opacity: 0.3;
    transform: scale(0.95);
    transition: all 0.5s ease;
}

.testimonial-slide.active {
    opacity: 1;
    transform: scale(1);
}

.testimonial-card {
    background: var(--bg-dark-card);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 50px;
    box-shadow: var(--shadow-premium);
    position: relative;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at top right, rgba(217, 70, 239, 0.1), transparent 70%);
    border-radius: 0 24px 0 0;
}

.quote-icon {
    font-size: 2.5rem;
    color: rgba(217, 70, 239, 0.25);
    margin-bottom: 24px;
}

.testimonial-text {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 30px;
}

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

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-light);
    font-size: 0.95rem;
}

.bg-gradient-orange { background: var(--grad-fire); }
.bg-gradient-magenta { background: var(--grad-neon); }
.bg-gradient-cyan { background: var(--grad-fresh); }

.user-info h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.user-stars {
    color: var(--accent-amber);
    font-size: 0.8rem;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.slider-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--accent-magenta);
    border-color: var(--accent-magenta);
    box-shadow: var(--glow-magenta);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dots .dot.active {
    background: var(--accent-magenta);
    width: 24px;
    border-radius: 4px;
}

/* ================= FAQ SECTION ================= */
.faq-section {
    background-color: #0c0818;
}

.faq-accordion-container {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-dark-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    margin-bottom: 18px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--glass-border-glow);
}

.faq-question {
    width: 100%;
    padding: 24px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-main);
}

.faq-question i {
    font-size: 0.9rem;
    color: var(--accent-magenta);
    transition: transform 0.4s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease;
    padding: 0 30px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Active FAQ Item styling toggled via JS */
.faq-item.active {
    border-color: rgba(217, 70, 239, 0.4);
    background: var(--bg-dark-card-hover);
}

.faq-item.active .faq-question {
    color: var(--accent-magenta);
}

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

.faq-item.active .faq-answer {
    padding-bottom: 24px;
}

/* ================= CONTACT SECTION ================= */
.contact-section {
    background-color: var(--bg-dark-space);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    align-items: stretch;
}

.contact-info-column {
    display: flex;
}

.contact-info-card {
    background: var(--bg-dark-card);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 48px;
    width: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-premium);
    position: relative;
    overflow: hidden;
}

.contact-info-card h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 10px;
}

.salon-tagline {
    color: var(--accent-orange);
    font-size: 0.95rem;
    margin-bottom: 35px;
    font-weight: 500;
}

.contact-detail-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
    flex-grow: 1;
}

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

.contact-detail-item .icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.2);
    color: var(--accent-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-detail-item h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-detail-item p {
    font-size: 0.98rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.link-hover:hover {
    color: var(--accent-orange);
}

.contact-social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    color: var(--text-light);
    box-shadow: var(--glow-orange);
    transform: translateY(-3px);
}

.contact-map-column {
    display: flex;
}

.map-wrapper-glow {
    width: 100%;
    border-radius: 24px;
    padding: 6px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-cyan));
    box-shadow: var(--shadow-premium);
    overflow: hidden;
}

.google-map {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border-radius: 18px;
    filter: grayscale(0.9) invert(0.9) contrast(1.2); /* elegant dark mode theme for map */
    opacity: 0.85;
    transition: var(--transition);
}

.map-wrapper-glow:hover .google-map {
    filter: none;
    opacity: 1;
}

/* ================= FOOTER ================= */
.main-footer {
    background: #090611;
    border-top: 1px solid var(--glass-border);
    padding-top: 80px;
}

.footer-content-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 60px;
}

.footer-brand-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    height: 40px;
    width: auto;
    filter: invert(1) brightness(1.2);
    margin-bottom: 24px;
}

.footer-brand-box p {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 320px;
}

.footer-links-box h3, .footer-legal-box h3 {
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: var(--text-light);
    position: relative;
    display: inline-block;
}

.footer-links-box h3::after, .footer-legal-box h3::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-orange);
}

.footer-links-box ul, .footer-legal-box ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-box ul a, .footer-legal-box ul a {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-links-box ul a:hover, .footer-legal-box ul a:hover {
    color: var(--accent-orange);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    background: #07040d;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    flex-wrap: wrap;
    gap: 15px;
}

/* ================= FLOAT WHATSAPP BUTTON ================= */
.whatsapp-float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.1rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    cursor: pointer;
    transition: var(--transition);
    animation: floatPulse 2s infinite;
}

@keyframes floatPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
        transform: scale(1);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        transform: scale(1);
    }
}

.whatsapp-float-btn:hover {
    background-color: #128c7e;
    color: #f3f4f6;
    transform: translateY(-5px);
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background-color: var(--bg-dark-card-hover);
    color: var(--text-light);
    border: 1px solid var(--glass-border);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-premium);
}

.whatsapp-float-btn:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* ================= ================= ================= */
/* RESPONSIVE DESIGN (MOBILE-FIRST)                      */
/* ================= ================= ================= */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-star {
        grid-column: span 2;
    }
    
    .press-grid {
        grid-template-columns: 1fr;
    }
    
    .press-media {
        min-height: 300px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cover-section {
        background-image: url('Imágenes/CoverMobile.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .cover-scroll-down {
        padding-bottom: 20px;
    }

    section {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    /* Mobile Navigation menu toggle style */
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--glass-bg-dense);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 50px 30px;
        gap: 30px;
        transition: var(--transition);
        overflow-y: auto;
        border-top: 1px solid var(--glass-border);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        width: 100%;
    }
    
    .nav-link {
        font-size: 1.15rem;
        font-weight: 600;
    }
    
    .nav-ctas {
        flex-direction: column;
        width: 100%;
        gap: 15px;
        margin-top: 20px;
    }
    
    .nav-ctas .btn {
        width: 100%;
    }
    
    /* Hamburger animation when active */
    .mobile-menu-btn.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-menu-btn.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Hero adjustment */
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-star {
        grid-column: span 1;
    }
    
    .service-benefits {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 30px;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding-bottom: 20px;
    }
    
    .contact-info-card {
        padding: 30px 20px;
    }
    
    .footer-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Optimizaciones de componentes móviles adicionales */
    .video-frame-glow {
        max-width: 290px;
        aspect-ratio: 9/16;
        margin: 0 auto;
    }

    .gallery-hover-overlay {
        opacity: 1; /* Mostrar permanentemente en móviles */
        background: linear-gradient(180deg, transparent 50%, rgba(15, 10, 28, 0.8) 100%);
    }

    .gallery-hover-content {
        transform: translateY(0);
    }

    .google-map {
        min-height: 320px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .video-frame-glow {
        max-width: 100%;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .whatsapp-float-btn {
        width: 50px;
        height: 50px;
        font-size: 1.7rem;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-tooltip {
        display: none; /* Hide tooltips on small screen */
    }
}
