/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Premium Color Palette */
    --gold-primary: #c9a96e;
    --gold-light: #d4bc8a;
    --gold-dark: #b8944d;
    --champagne: #f5f0e8;
    --cream: #faf8f5;
    --dark-luxury: #1a1a1a;
    --dark-secondary: #2c2c2c;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --text-muted: #888;
    --white: #ffffff;
    
    /* Glassmorphism */
    --glass-white: rgba(255, 255, 255, 0.15);
    --glass-dark: rgba(0, 0, 0, 0.3);
    --glass-border: rgba(255, 255, 255, 0.2);
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-gold: 0 10px 40px rgba(201, 169, 110, 0.3);
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2 {
    font-family: 'Great Vibes', cursive;
    font-weight: 400;
}

h3, h4 {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== Premium Header & Navigation ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 40px rgba(0, 0, 0, 0.12);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--dark-luxury);
    letter-spacing: 3px;
    font-weight: 300;
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-primary) 50%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 52px;
    width: auto;
    display: block;
    object-fit: contain;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
    transition: var(--transition);
}

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

.nav-menu a:hover {
    color: var(--gold-primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 28px;
    height: 2px;
    background: var(--dark-luxury);
    transition: var(--transition);
    border-radius: 2px;
}

/* Nav Login & Logout Premium */
.nav-login {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%) !important;
    color: var(--white) !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 2px;
    box-shadow: var(--shadow-gold);
    transition: var(--transition) !important;
}

.nav-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(201, 169, 110, 0.4) !important;
}

.nav-login::after {
    display: none !important;
}

.nav-logout-btn {
    background: transparent;
    border: 1px solid var(--text-light);
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    transition: var(--transition);
}

.nav-logout-btn:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

/* ===== Premium Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    padding-top: 80px;
    overflow: hidden;
    background: 
        linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(44, 44, 44, 0.7) 100%),
        url('https://images.unsplash.com/photo-1521590832167-7bcbfaa6381f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(201, 169, 110, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(201, 169, 110, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
    padding: 0 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--glass-white);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
}

.hero-badge span {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-badge .badge-icon {
    width: 8px;
    height: 8px;
    background: var(--gold-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 6.5rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
    letter-spacing: 1px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
    border: none;
    box-shadow: var(--shadow-gold);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(201, 169, 110, 0.4);
}

.cta-button-outline {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
    border: 2px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.cta-button-outline:hover {
    background: var(--glass-white);
    border-color: var(--gold-primary);
    color: var(--gold-light);
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator span {
    display: block;
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, var(--gold-primary), transparent);
    animation: scrollDown 2s infinite;
}

/* ===== Premium About Section ===== */
.about {
    padding: 10rem 0;
    background: var(--white);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text-content {
    padding-right: 2rem;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold-primary);
    z-index: -1;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    color: var(--dark-luxury);
    position: relative;
    line-height: 1.2;
}

.section-title-center {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title-center::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
    margin: 1.5rem auto 0;
}

.about-text {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

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

.stat-number {
    font-family: 'Great Vibes', cursive;
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--gold-primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* ===== Premium Services Section ===== */
.services {
    padding: 10rem 0;
    background: var(--champagne);
    position: relative;
}

.services-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.services-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

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

.service-card {
    background: var(--white);
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    width: 100%;
    height: 180px;
    margin: -3rem -2rem 1.5rem -2rem;
    width: calc(100% + 4rem);
    overflow: hidden;
    position: relative;
}

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

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

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark-luxury);
    letter-spacing: 2px;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 300;
}

.service-features {
    list-style: none;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    text-align: left;
}

.service-features li {
    font-size: 0.9rem;
    color: var(--text-light);
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features li::before {
    content: '✓';
    color: var(--gold-primary);
    font-weight: 600;
}

/* ===== Special Packages Section ===== */

/* Tabs */
.pkg-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
}

.pkg-tab {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.55);
    padding: 0.6rem 2rem;
    font-size: 0.75rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.25s;
}

.pkg-tab:hover {
    background: rgba(201, 169, 110, 0.12);
    color: var(--gold-light);
    border-color: rgba(201, 169, 110, 0.35);
}

.pkg-tab.active {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-primary) 100%);
    border-color: var(--gold-primary);
    color: var(--white);
}

/* Panels */
.pkg-panel {
    display: none;
}

.pkg-panel.active {
    display: block;
}

/* Package card image */
.pkg-card-img {
    width: calc(100% + 4rem);
    margin-left: -2rem;
    margin-right: -2rem;
    margin-top: 1rem;
    margin-bottom: 1.2rem;
    height: 260px;
    overflow: hidden;
}

.pkg-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
    transition: transform 0.4s ease;
}

.package-card:hover .pkg-card-img img {
    transform: scale(1.04);
}

/* Gem badge */
.pkg-gem-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.pkg-gem-icon {
    font-size: 1.6rem;
    color: var(--gem);
    line-height: 1;
    filter: drop-shadow(0 0 6px var(--gem));
}

.pkg-gem-label {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.pkg-tier-desc {
    color: rgba(255, 255, 255, 0.55) !important;
    font-size: 0.82rem !important;
    font-style: italic;
    margin-bottom: 0.25rem !important;
    line-height: 1.4 !important;
}

.pkg-price {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
    margin: 0.75rem 0 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pkg-price strong {
    font-size: 1.5rem;
    color: var(--gold-light);
    font-weight: 500;
}

/* Gem-specific border accents */
.pkg-esmeralda {
    border-top: 2px solid #50c878 !important;
}

.pkg-rubi {
    border-top: 2px solid var(--gold-primary) !important;
}

.pkg-diamante {
    border-top: 2px solid #a8d8ea !important;
}

.packages {
    padding: 10rem 0;
    background: linear-gradient(135deg, var(--dark-luxury) 0%, var(--dark-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.packages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(201, 169, 110, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(201, 169, 110, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.packages .section-title {
    color: var(--white);
}

.packages .section-label {
    color: var(--gold-light);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.package-card {
    background: var(--glass-white);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.package-card.featured {
    transform: scale(1.05);
    border-color: var(--gold-primary);
}

.package-card.featured::before {
    content: 'MÁS ELEGIDO';
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--white);
    padding: 0.5rem 3rem;
    font-size: 0.7rem;
    letter-spacing: 1px;
    transform: rotate(45deg);
}

.package-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-primary);
    box-shadow: 0 20px 60px rgba(201, 169, 110, 0.2);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-image {
    width: calc(100% + 4rem);
    height: 200px;
    margin: -3rem -2rem 1.5rem -2rem;
    overflow: hidden;
    position: relative;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
    filter: brightness(0.9);
}

.package-card:hover .package-image img {
    transform: scale(1.1);
    filter: brightness(1);
}

.package-card h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.package-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.package-services {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.package-services li {
    color: rgba(255, 255, 255, 0.8);
    padding: 0.6rem 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.package-services li:last-child {
    border-bottom: none;
}

.package-services li::before {
    content: '★';
    color: var(--gold-primary);
}

.package-price {
    font-family: 'Great Vibes', cursive;
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
}

.package-cta {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--white);
    border: none;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Nunito', sans-serif;
}

.package-cta:hover {
    box-shadow: var(--shadow-gold);
}

/* ===== Branches Section ===== */
.branches {
    background: linear-gradient(135deg, var(--dark-luxury) 0%, var(--dark-secondary) 100%);
    overflow: hidden;
    position: relative;
}

.branches::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 0% 50%, rgba(201,169,110,0.12) 0%, transparent 55%),
        radial-gradient(ellipse at 100% 20%, rgba(201,169,110,0.07) 0%, transparent 50%);
    pointer-events: none;
}

/* Two-column layout: header left, cards right */
.branches-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0;
    min-height: 600px;
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

.branches-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 5rem 8rem 6rem;
    border-right: 1px solid rgba(201,169,110,0.2);
}

.branches-header .section-title {
    color: var(--white);
    font-size: clamp(2.2rem, 3vw, 3rem);
    line-height: 1.15;
    margin-bottom: 1.2rem;
}

.branches-header .section-label {
    color: var(--gold-light);
    margin-bottom: 1rem;
}

.branches-subtitle {
    color: rgba(255,255,255,0.55);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.branches-city-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold-primary);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid rgba(201,169,110,0.35);
    padding: 0.5rem 1rem;
    border-radius: 2px;
    width: fit-content;
}

/* 2×2 grid of cards */
.branches-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}

.branch-card {
    position: relative;
    padding: 2.8rem 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    border-right: 1px solid rgba(255,255,255,0.06);
    transition: background 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
}

.branch-card:nth-child(even) {
    border-right: none;
}

.branch-card:nth-child(3),
.branch-card:nth-child(4) {
    border-bottom: none;
}

.branch-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.branch-card:hover {
    background: rgba(255,255,255,0.04);
}

.branch-card:hover::before {
    transform: scaleX(1);
}

/* Large decorative number */
.branch-num {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
    color: rgba(255,255,255,0.04);
    letter-spacing: -2px;
    pointer-events: none;
    user-select: none;
    transition: color 0.3s ease;
}

.branch-card:hover .branch-num {
    color: rgba(201,169,110,0.08);
}

.branch-top {
    margin-bottom: 1.5rem;
}

.branch-top h3 {
    font-size: 1.35rem;
    color: var(--white);
    letter-spacing: 2px;
    margin: 0;
    line-height: 1.2;
}

.branch-body {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    flex: 1;
    margin-bottom: 1.8rem;
}

.branch-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255,255,255,0.55);
    font-size: 0.88rem;
    line-height: 1.5;
}

.branch-row svg {
    color: var(--gold-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.branch-phones {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.branch-phones a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.25s;
}

.branch-phones a:hover {
    color: var(--gold-light);
}

/* ===== Testimonials Section ===== */
.testimonials {
    padding: 10rem 0;
    background: linear-gradient(135deg, var(--dark-luxury) 0%, var(--dark-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 10% 30%, rgba(201, 169, 110, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 70%, rgba(201, 169, 110, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials .section-title {
    color: var(--white);
}

.testimonials .section-label {
    color: var(--gold-light);
}

.testimonials .services-intro p {
    color: rgba(255, 255, 255, 0.7);
}

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

.testimonial-card {
    background: var(--glass-white);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 4rem;
    color: var(--gold-primary);
    opacity: 0.3;
    font-family: 'Great Vibes', cursive;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-primary);
    box-shadow: 0 20px 60px rgba(201, 169, 110, 0.2);
}

.testimonial-rating {
    color: var(--gold-primary);
    font-size: 1.1rem;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.9;
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.author-info strong {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
}

.author-info span {
    color: var(--gold-light);
    font-size: 0.8rem;
    font-weight: 300;
}

/* ===== Gallery Section ===== */
.gallery {
    padding: 10rem 0;
    background: var(--champagne);
}

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

.gallery-item {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border-radius: 4px;
}

.gallery-item img,
.gallery-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: var(--transition-slow);
}

.gallery-placeholder {
    background: linear-gradient(135deg, var(--cream) 0%, #e8e5e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-placeholder span {
    font-size: 1rem;
    color: var(--text-light);
    letter-spacing: 2px;
    font-weight: 300;
    text-transform: uppercase;
}

/* Tags — visible siempre, arriba de la imagen */
.gallery-tags {
    position: absolute;
    top: 0.9rem;
    left: 0;
    right: 0;
    padding: 0 0.85rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    z-index: 3;
    pointer-events: none;
}

.gallery-tag {
    background: rgba(10, 10, 10, 0.55);
    backdrop-filter: blur(6px);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.6rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-weight: 500;
    padding: 0.28rem 0.6rem;
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    white-space: nowrap;
    transition: background 0.2s;
}

.gallery-item:hover .gallery-tag {
    background: rgba(201, 169, 110, 0.75);
    border-color: rgba(201, 169, 110, 0.4);
}

/* Caption — parte inferior de la imagen */
.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 1rem 1rem 1rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    z-index: 2;
    pointer-events: none;
}

.gallery-caption-label {
    color: var(--gold, #c9a96e);
    font-size: 0.55rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
}

.gallery-caption-desc {
    color: #fff;
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
}

.gallery-count {
    color: rgba(255,255,255,0.55);
    font-size: 0.62rem;
    letter-spacing: 1.5px;
    margin-top: 0.1rem;
}

.gallery-watermark {
    position: absolute;
    bottom: 0.7rem;
    right: 0.8rem;
    z-index: 3;
    pointer-events: none;
}

.gallery-watermark img {
    width: 48px;
    height: auto;
    opacity: 0.22;
    filter: brightness(0) invert(1);
}

.gallery-item:hover img,
.gallery-item:hover .gallery-placeholder {
    transform: scale(1.06);
}

/* ===== Contact Section ===== */
/* ===== Contact / Reserva Section ===== */
.contact {
    padding: 10rem 0;
    background: var(--white);
    position: relative;
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Left info panel */
.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-info .section-label {
    color: var(--gold-primary);
}

.contact-info .section-title {
    color: var(--dark-luxury);
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.contact-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    background: var(--champagne);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    flex-shrink: 0;
}

.contact-item-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-light);
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.contact-item-value {
    color: var(--dark-luxury);
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 300;
}

.contact-item-value a {
    color: var(--dark-luxury);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-item-value a:hover {
    color: var(--gold-primary);
}

.contact-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.8rem;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    width: fit-content;
    transition: opacity 0.25s, transform 0.25s;
}

.contact-wa-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Right form panel */
.contact-form-wrap {
    display: flex;
    align-items: flex-start;
}

.contact-form {
    background: var(--cream);
    padding: 3rem;
    width: 100%;
}

.contact-form-eyebrow {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
}

.contact-form-title {
    font-size: 1.8rem;
    color: var(--dark-luxury);
    letter-spacing: 2px;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 0;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.form-field label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-light);
    font-weight: 500;
}

.form-optional {
    font-size: 0.65rem;
    color: var(--text-light);
    opacity: 0.6;
    text-transform: none;
    letter-spacing: 0;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 1px solid rgba(0,0,0,0.1);
    background: var(--white);
    color: var(--dark-luxury);
    font-family: 'Nunito', sans-serif;
    font-size: 0.93rem;
    font-weight: 300;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(0,0,0,0.3);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(201,169,110,0.1);
}

.contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-color: var(--white);
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.contact-form textarea {
    resize: none;
}

.submit-button {
    width: 100%;
    padding: 1.1rem 2rem;
    background: #25d366;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 1px;
    font-family: 'Nunito', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: opacity 0.25s, transform 0.25s;
    margin-top: 0.25rem;
}

.submit-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Branch name clickable */
.branch-name-link {
    cursor: pointer;
    transition: color 0.25s ease;
}

.branch-name-link:hover {
    color: var(--gold-light);
}

/* ===== Premium Footer ===== */
.footer {
    background: var(--dark-luxury);
    color: var(--white);
    padding: 6rem 0 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.footer-brand h3 {
    font-size: 2rem;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
}

.footer-section h4 {
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 400;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-section ul a:hover {
    color: var(--gold-primary);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    font-weight: 300;
}

/* ===== WhatsApp Floating Button ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    text-decoration: none;
    animation: bounceIn 0.5s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--white);
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    font-size: 0.9rem;
    color: var(--dark-luxury);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollDown {
    0%, 100% {
        transform: scaleY(0);
        transform-origin: top;
    }
    50% {
        transform: scaleY(1);
        transform-origin: top;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Fade in on scroll */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ===== Responsive Design ===== */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image {
        order: -1;
    }
    
    .about-image::before {
        display: none;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .package-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .branches-inner {
        grid-template-columns: 1fr;
    }

    .branches-header {
        padding: 5rem 2rem 3rem;
        border-right: none;
        border-bottom: 1px solid rgba(201,169,110,0.2);
        text-align: center;
        align-items: center;
    }

    .branches-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        background: var(--white);
        padding: 100px 2rem 2rem;
        gap: 2rem;
        transition: var(--transition);
        justify-content: flex-start;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-title {
        font-size: 3.5rem;
        letter-spacing: 1px;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        letter-spacing: 3px;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 2.6rem;
        letter-spacing: 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .branches-grid {
        grid-template-columns: 1fr;
    }

    .branch-card:nth-child(even) {
        border-right: none;
    }

    .branch-card:nth-child(odd) {
        border-right: none;
    }

    .branch-card:last-child {
        border-bottom: none;
    }

    .branch-card:nth-child(3) {
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand p {
        max-width: none;
    }
    
    .social-links {
        justify-content: center;
    }

    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.8rem;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 0.75rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }
    
    .cta-button,
    .cta-button-outline {
        width: 100%;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
        letter-spacing: 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
}

/* ===== Campaign Popup Modal ===== */
.campaign-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.campaign-popup.active {
    opacity: 1;
    visibility: visible;
}

.campaign-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.campaign-modal {
    position: relative;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    transform: scale(0.9) translateY(30px);
    transition: all 0.4s ease;
}

.campaign-popup.active .campaign-modal {
    transform: scale(1) translateY(0);
}

.campaign-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.8rem;
    color: var(--dark-luxury);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    line-height: 1;
}

.campaign-close:hover {
    background: var(--gold-primary);
    color: var(--white);
    transform: rotate(90deg);
}

.campaign-link {
    display: block;
}

.campaign-image {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== Branch Zone Badge ===== */
.branch-zone {
    display: inline-block;
    color: var(--gold-primary);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.branch-map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255,255,255,0.35);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.25s ease;
    margin-top: auto;
    width: fit-content;
}

.branch-map-link svg {
    transition: transform 0.25s ease;
}

.branch-map-link:hover {
    color: var(--gold-light);
}

.branch-map-link:hover svg {
    transform: translate(2px, -2px);
}

/* ===== Branch Location Modal ===== */
.bmodal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 1.5rem;
}

.bmodal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.bmodal {
    display: grid;
    grid-template-columns: 340px 1fr;
    width: 100%;
    max-width: 900px;
    height: 520px;
    background: var(--dark-luxury);
    border: 1px solid rgba(201,169,110,0.25);
    box-shadow: 0 40px 100px rgba(0,0,0,0.6);
    overflow: hidden;
    position: relative;
    transform: scale(0.94) translateY(20px);
    transition: transform 0.35s ease;
}

.bmodal-overlay.active .bmodal {
    transform: scale(1) translateY(0);
}

/* Close button */
.bmodal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.6);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.bmodal-close:hover {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
    color: var(--white);
    transform: rotate(90deg);
}

/* Info panel (left) */
.bmodal-info {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(201,169,110,0.15);
    position: relative;
    overflow: hidden;
}

.bmodal-info::before {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(201,169,110,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.bmodal-num {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1;
    color: rgba(255,255,255,0.05);
    letter-spacing: -3px;
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    user-select: none;
}

.bmodal-zone {
    color: var(--gold-primary);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.bmodal-name {
    font-size: 1.8rem;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.bmodal-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.bmodal-detail > svg {
    color: var(--gold-primary);
    flex-shrink: 0;
    margin-top: 3px;
}

.bmodal-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.35);
    margin-bottom: 0.3rem;
}

.bmodal-value {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

.bmodal-phones {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.bmodal-phones a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.bmodal-phones a:hover {
    color: var(--gold-light);
}

.bmodal-gmaps-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: auto;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--white);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: opacity 0.25s ease, transform 0.25s ease;
    width: fit-content;
}

.bmodal-gmaps-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* Map panel (right) */
.bmodal-map {
    position: relative;
    overflow: hidden;
}

.bmodal-map iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
    filter: grayscale(15%);
}

/* Modal responsive */
@media (max-width: 700px) {
    .bmodal {
        grid-template-columns: 1fr;
        grid-template-rows: auto 260px;
        height: auto;
        max-height: 90vh;
    }

    .bmodal-info {
        padding: 2rem 1.5rem;
        border-right: none;
        border-bottom: 1px solid rgba(201,169,110,0.15);
    }

    .bmodal-name {
        font-size: 1.4rem;
        margin-bottom: 1.2rem;
    }

    .bmodal-num {
        font-size: 3rem;
        top: 1rem;
        right: 1rem;
    }
}

/* Responsive for popup */
@media (max-width: 480px) {
    .campaign-modal {
        width: 95%;
        margin: 1rem;
    }
    
    .campaign-close {
        top: 5px;
        right: 5px;
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
}

/* ===== Accordion — Servicios con Precios ===== */
.accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid var(--gold-light);
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 0.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 2rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-luxury);
    text-align: left;
    transition: background 0.2s, color 0.2s;
    gap: 1rem;
}

.accordion-header:hover {
    background: var(--champagne);
    color: var(--gold-dark);
}

.accordion-item.active .accordion-header {
    background: var(--champagne);
    color: var(--gold-dark);
}

.accordion-icon {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--gold-primary);
    line-height: 1;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    display: none;
    padding: 0 2rem 2rem;
    animation: fadeIn 0.2s ease;
}

.accordion-item.active .accordion-content {
    display: block;
}

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

/* Price list — servicios de precio fijo */
.price-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 0;
    border-bottom: 1px dashed var(--gold-light);
    gap: 1rem;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.price-list-item:last-child {
    border-bottom: none;
}

.price-tag {
    font-weight: 700;
    color: var(--gold-dark);
    white-space: nowrap;
    font-size: 0.95rem;
}

/* Price sections inside accordion */
.price-list-section {
    margin-bottom: 1.5rem;
}

.price-list-section:last-child {
    margin-bottom: 0;
}

.price-subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold-dark);
    margin-bottom: 0.8rem;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid var(--gold-light);
}

/* Note / disclaimer text */
.price-note {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 1rem;
}

/* Price tables — para precios por largo de cabello */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 0.5rem;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    min-width: 480px;
}

.price-table th {
    background: var(--gold-primary);
    color: var(--white);
    padding: 0.65rem 0.9rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.82rem;
    line-height: 1.3;
}

.price-table th:first-child {
    text-align: left;
}

.price-table td {
    padding: 0.6rem 0.9rem;
    text-align: center;
    border-bottom: 1px solid #f0e8d8;
    color: var(--text-dark);
}

.price-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.price-table tbody tr:nth-child(even) {
    background: var(--champagne);
}

.price-table tbody tr:hover {
    background: #f0e6d0;
}

.price-table small {
    display: block;
    font-weight: 400;
    font-size: 0.75rem;
    opacity: 0.85;
}

/* Product tables — Kérastase & L'Oréal */
.prod-brand-bar {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    padding: 0.6rem 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.prod-brand-kerastase {
    background: linear-gradient(90deg, #1a1a1a 0%, #2c2c2c 100%);
    border-left: 3px solid #c9a96e;
}

.prod-brand-loreal {
    background: linear-gradient(90deg, #1a1a1a 0%, #2c2c2c 100%);
    border-left: 3px solid #c0392b;
}

.prod-brand-name {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
}

.prod-brand-sub {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.45);
    letter-spacing: 1px;
}

/* Catálogo PDF block */
.catalogo-pdf-block {
    padding: 2rem 1rem 0.5rem;
    display: flex;
    justify-content: center;
    text-align: center;
}

.catalogo-pdf-desc {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 420px;
    margin: 0;
}

.catalogo-pdf-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.75rem 1.75rem;
    background: var(--gold-primary);
    color: #0a0a0a;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.2s, transform 0.15s;
}

.catalogo-pdf-btn:hover {
    background: #0a0a0a;
    color: #ffffff;
    transform: translateY(-1px);
}

.prod-table .prod-cat-row td {
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-primary));
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 0.45rem 0.9rem;
    text-align: left !important;
}

.prod-table tbody tr:not(.prod-cat-row) td:last-child {
    text-align: right;
    font-weight: 500;
    white-space: nowrap;
    color: var(--gold-dark);
}

/* override nth-child zebra so cat-rows don't get it */
.prod-table tbody tr.prod-cat-row {
    background: none !important;
    color: white;
}

/* Responsive accordion */
@media (max-width: 768px) {
    .accordion-header {
        padding: 1.1rem 1.2rem;
        font-size: 1rem;
    }

    .accordion-content {
        padding: 0 1.2rem 1.5rem;
    }

    .price-list-item {
        font-size: 0.88rem;
    }
}

/* ===== Gallery Panel Mosaico ===== */
.gallery-panel {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.97);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
}

.gallery-panel.active {
    opacity: 1;
    visibility: visible;
}

.gallery-panel-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2.5rem;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.gallery-panel-label {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold, #c9a96e);
    white-space: nowrap;
}

.gallery-panel-header h3 {
    flex: 1;
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--white);
}

.gallery-panel-close {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.6rem;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    line-height: 1;
    transition: background 0.2s, color 0.2s;
    flex-shrink: 0;
}

.gallery-panel-close:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
}

.gallery-panel-mosaic {
    columns: 3;
    column-gap: 0.6rem;
    padding: 1.5rem 2.5rem 3rem;
}

.mosaic-item {
    position: relative;
    overflow: hidden;
    break-inside: avoid;
    margin-bottom: 0.6rem;
    border-radius: 2px;
    cursor: zoom-in;
}

.mosaic-item img {
    width: 100%;
    display: block;
    transition: opacity 0.25s, transform 0.25s;
}

.mosaic-item:hover img {
    opacity: 0.88;
    transform: scale(0.985);
}

.mosaic-item .gallery-caption {
    padding: 1.8rem 0.75rem 0.6rem 0.75rem;
}

.mosaic-item .gallery-caption-label {
    font-size: 0.5rem;
    letter-spacing: 2px;
}

.mosaic-item .gallery-caption-desc {
    font-size: 0.7rem;
    letter-spacing: 1px;
}

.mosaic-item .gallery-watermark img {
    width: 42px;
}

@media (max-width: 900px) {
    .gallery-panel-mosaic { columns: 2; }
}

@media (max-width: 540px) {
    .gallery-panel-mosaic { columns: 1; padding: 1rem; }
    .gallery-panel-header { padding: 1rem 1.25rem; }
    .gallery-panel-header h3 { font-size: 1.1rem; letter-spacing: 2px; }
}



/* ===== Nosotros Extended Section ===== */
.nosotros-ext {
    background: #0e0e0e;
    padding: 6rem 0;
}

/* Historia */
.nosotros-historia {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.nosotros-p {
    color: rgba(255,255,255,0.65);
    font-size: 0.95rem;
    line-height: 1.85;
    margin-bottom: 1rem;
}

.nosotros-p strong {
    color: var(--gold-primary);
    font-weight: 600;
}

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

.nosotros-quote {
    border-left: 3px solid var(--gold-primary);
    padding: 1.75rem 2rem;
    background: rgba(201,169,110,0.06);
    border-radius: 0 4px 4px 0;
}

.nosotros-quote p {
    font-size: 1.05rem;
    font-style: italic;
    color: rgba(255,255,255,0.85);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.nosotros-quote footer {
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-primary);
}

.nosotros-quote cite {
    font-style: normal;
    color: rgba(255,255,255,0.45);
}

/* Pilares */
.nosotros-pilares {
    margin-bottom: 5rem;
}

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

.pilar-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-top: 2px solid var(--gold-primary);
    padding: 2rem 1.5rem;
    border-radius: 2px;
    transition: background 0.25s, transform 0.2s;
}

.pilar-card:hover {
    background: rgba(201,169,110,0.06);
    transform: translateY(-4px);
}

.pilar-icon {
    color: var(--gold-primary);
    margin-bottom: 1.1rem;
}

.pilar-title {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 0.75rem;
}

.pilar-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
}

.pilar-desc strong {
    color: rgba(255,255,255,0.8);
}

/* Misión / Visión */
.nosotros-mv {
    margin-bottom: 5rem;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.mv-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    padding: 2.5rem;
    border-radius: 2px;
    position: relative;
}

.mv-badge {
    display: inline-block;
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--gold-primary);
    border: 1px solid rgba(201,169,110,0.35);
    padding: 0.3rem 0.9rem;
    border-radius: 2px;
    margin-bottom: 1.25rem;
}

.mv-card p {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
}

/* CTA */
.nosotros-cta {
    text-align: center;
    padding: 4rem 0 1rem;
    border-top: 1px solid rgba(255,255,255,0.07);
}

.nosotros-cta-title {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 0.75rem;
}

.nosotros-cta-sub {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .pilares-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nosotros-historia {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .pilares-grid {
        grid-template-columns: 1fr;
    }
    .mv-grid {
        grid-template-columns: 1fr;
    }
    .nosotros-cta-title {
        font-size: 1.3rem;
    }
}


/* ===== Nosotros Page Hero ===== */
.nosotros-hero {
    background: #0a0a0a;
    padding: 9rem 2rem 6rem;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    position: relative;
    overflow: hidden;
}

.nosotros-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(201,169,110,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.nosotros-hero-inner {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
}

.nosotros-hero-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 300;
    letter-spacing: 2px;
    color: #fff;
    line-height: 1.3;
    margin: 1rem 0;
}

.nosotros-hero-sub {
    color: rgba(255,255,255,0.5);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto;
}

/* Stats bar inside nosotros page */
.nosotros-stats {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 5rem;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 2px;
    overflow: hidden;
}

.nosotros-stats .stat-item {
    flex: 1;
    padding: 2.5rem 1.5rem;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.07);
    background: rgba(255,255,255,0.02);
}

.nosotros-stats .stat-item:last-child {
    border-right: none;
}

.nosotros-stats .stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--gold-primary);
    letter-spacing: 2px;
    margin-bottom: 0.35rem;
}

.nosotros-stats .stat-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}

@media (max-width: 600px) {
    .nosotros-hero { padding: 7rem 1.25rem 4rem; }
    .nosotros-stats { flex-direction: column; }
    .nosotros-stats .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
    .nosotros-stats .stat-item:last-child { border-bottom: none; }
}
