/* ==========================================================================
   DJ FOX LUXURY DESIGN SYSTEM & STYLES (v3.1 CLEAN HERO & FULL PLATFORM)
   ========================================================================== */

:root {
    --bg-dark: #070709;
    --bg-card: rgba(14, 14, 18, 0.65);
    --bg-card-hover: rgba(22, 22, 28, 0.85);
    
    --text-light: #ffffff;
    --text-muted: #a0a0aa;
    --accent-gold: #e5b95c;
    --accent-platinum: #f5f5f7;
    
    --btn-primary-bg: #ffffff;
    --btn-primary-text: #050507;
    --btn-primary-glow: rgba(255, 255, 255, 0.25);
    
    --btn-secondary-bg: rgba(255, 255, 255, 0.08);
    --btn-secondary-border: rgba(255, 255, 255, 0.2);
    
    --font-headings: 'Bebas Neue', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.45s cubic-bezier(0.25, 1, 0.5, 1.15);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 85px;
}

body {
    width: 100%;
    min-height: 100vh;
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   BACKGROUND SLIDER (CINEMATIC BACKDROP)
   ========================================================================== */
.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    background-color: #000;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.8s cubic-bezier(0.4, 0, 0.2, 1), transform 10s cubic-bezier(0.1, 0.8, 0.2, 1);
}

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

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(to bottom, rgba(5, 5, 7, 0.55) 0%, rgba(7, 7, 9, 0.92) 100%),
        radial-gradient(circle at center, rgba(0, 0, 0, 0.2) 0%, rgba(7, 7, 9, 0.85) 100%);
    z-index: -1;
    pointer-events: none;
}

/* ==========================================================================
   PAGE HERO BANNERS (FOR NOSOTROS, SERVICIOS, GALERIA, CONTACTO)
   ========================================================================== */
.page-banner {
    position: relative;
    width: 100%;
    padding: 9rem 2rem 5rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-banner-content {
    max-width: 900px;
    z-index: 2;
}

.page-banner-title {
    font-family: var(--font-headings);
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.05;
    color: var(--text-light);
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

/* ==========================================================================
   HEADER NAVIGATION BAR (DESKTOP & MOBILE)
   ========================================================================== */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(7, 7, 9, 0.85);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-smooth);
}

.top-nav.scrolled {
    background: rgba(5, 5, 7, 0.96);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

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

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

.nav-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.nav-logo-img:hover {
    transform: scale(1.04);
    filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.35));
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}

.nav-link {
    color: var(--text-muted);
    font-family: var(--font-headings);
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: var(--transition-smooth);
    position: relative;
    padding: 0.3rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-light);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

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

.nav-admin-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.9rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    font-size: 1rem;
}

.btn-nav-wa {
    padding: 0.65rem 1.3rem;
    border-radius: 50px;
    font-size: 0.95rem;
    background: #ffffff;
    color: #000;
    font-family: var(--font-headings);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-bounce);
}

.btn-nav-wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.35);
}

/* Mobile Toggle Button */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
}

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

/* Mobile Drawer Overlay */
.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.mobile-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    height: 100dvh;
    background: rgba(12, 12, 16, 0.98);
    backdrop-filter: blur(25px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 201;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 2rem 1.5rem;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
}

.mobile-drawer.active {
    transform: translateX(-320px);
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.drawer-logo {
    height: 40px;
}

.drawer-close {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 2.2rem;
    line-height: 1;
    cursor: pointer;
}

.drawer-links {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.drawer-link {
    color: var(--text-muted);
    font-family: var(--font-headings);
    font-size: 1.4rem;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.drawer-link:hover, .drawer-link.active {
    color: var(--text-light);
    padding-left: 8px;
}

.drawer-admin {
    color: var(--accent-gold);
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.drawer-footer {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.25rem;
    margin-top: auto;
}

.drawer-contact-item {
    color: var(--text-muted);
    text-decoration: none;
}

/* ==========================================================================
   SECTION 1: HERO SECTION (INICIO CENTERED PRESENTATION)
   ========================================================================== */
.section-hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 8rem 2rem 5rem;
}

.hero-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    z-index: 2;
}

.hero-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.6rem;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--text-light);
    font-family: var(--font-headings);
    font-size: 0.9rem;
    letter-spacing: 0.14em;
    padding: 0.45rem 1.2rem;
    border-radius: 50px;
    text-transform: uppercase;
}

.hero-main-title {
    font-family: var(--font-headings);
    font-size: 4.8rem;
    font-weight: 700;
    line-height: 1.05;
    color: var(--text-light);
    letter-spacing: 0.01em;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.85);
    transition: opacity 0.3s ease;
}

.hero-description {
    font-size: 1.22rem;
    color: #e0e0e8;
    line-height: 1.65;
    max-width: 780px;
    transition: opacity 0.3s ease;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-top: 0.5rem;
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline-hero {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
}

.btn-outline-hero:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
}

.hero-pills {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1rem;
}

.pill-item {
    font-size: 0.92rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.45rem 1rem;
    border-radius: 50px;
}

/* SLIDER CONTROL DOTS */
.slider-controls {
    display: flex;
    gap: 0.75rem;
    margin-top: 3rem;
    z-index: 5;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50px;
    border: none;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: var(--transition-bounce);
    outline: none;
}

.dot.active {
    width: 32px;
    background: #ffffff;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   SECTIONS GENERAL LAYOUT
   ========================================================================== */
.section-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 6rem 2rem;
    position: relative;
    z-index: 2;
}

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

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

.section-subtitle {
    font-family: var(--font-headings);
    font-size: 1.15rem;
    letter-spacing: 0.25em;
    color: var(--text-muted);
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: var(--font-headings);
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.1;
    color: var(--text-light);
}

.section-line {
    width: 70px;
    height: 3px;
    background: #ffffff;
    margin: 1rem auto 0;
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}

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

.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2.75rem;
    transition: var(--transition-smooth);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.glass-card:hover {
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-4px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
}

/* ==========================================================================
   NOSOTROS PAGE STYLES
   ========================================================================== */
.nosotros-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.nosotros-text-card h3 {
    font-family: var(--font-headings);
    font-size: 2.3rem;
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

.nosotros-text-card p {
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    font-size: 1.08rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    flex-shrink: 0;
}

.feature-item h4 {
    font-family: var(--font-headings);
    font-size: 1.35rem;
    margin-bottom: 0.2rem;
}

.feature-item p {
    font-size: 0.98rem;
    margin-bottom: 0;
}

.stats-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-number {
    font-family: var(--font-headings);
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 25px rgba(255, 255, 255, 0.25);
}

.stat-label {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ==========================================================================
   SERVICIOS PAGE STYLES
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.service-icon-box {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #ffffff;
    flex-shrink: 0;
}

.service-card h3 {
    font-family: var(--font-headings);
    font-size: 1.8rem;
    line-height: 1.2;
}

.service-card p {
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.65;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-btn {
    align-self: flex-start;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
}

/* ==========================================================================
   GALERÍA PAGE STYLES & LIGHTBOX
   ========================================================================== */
.category-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-bottom: 3.5rem;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-muted);
    font-family: var(--font-headings);
    font-size: 1.2rem;
    padding: 0.65rem 1.6rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-bounce);
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-light);
}

.filter-btn.active {
    background: #ffffff;
    color: #050507;
    border-color: #ffffff;
    box-shadow: 0 4px 25px rgba(255, 255, 255, 0.35);
}

.albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 2.2rem;
}

.album-card {
    border-radius: 24px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-smooth);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.album-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.85);
}

.album-cover-wrapper {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.album-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.album-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-family: var(--font-headings);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    text-transform: uppercase;
}

.album-count-badge {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 0.9rem;
    padding: 0.35rem 0.8rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.album-info {
    padding: 1.85rem 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex-grow: 1;
}

.album-title {
    font-family: var(--font-headings);
    font-size: 1.7rem;
    line-height: 1.2;
    color: var(--text-light);
}

.album-meta {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.album-desc {
    font-size: 0.98rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-top: 0.4rem;
}

/* LIGHTBOX MODAL */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.94);
    backdrop-filter: blur(15px);
}

.lightbox-content {
    position: relative;
    z-index: 1000;
    width: 92%;
    max-width: 1150px;
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 2.8rem;
    cursor: pointer;
    line-height: 1;
}

.lightbox-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.lightbox-album-title {
    font-family: var(--font-headings);
    font-size: 2rem;
}

.lightbox-counter {
    font-family: var(--font-headings);
    font-size: 1.3rem;
    color: var(--text-muted);
}

.lightbox-body {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img-wrapper {
    max-width: 100%;
    max-height: 65vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 25px 70px rgba(0,0,0,0.95);
}

.lightbox-img {
    max-width: 100%;
    max-height: 65vh;
    object-fit: contain;
    border-radius: 12px;
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    z-index: 10;
}

.lightbox-arrow:hover {
    background: #ffffff;
    color: #000;
}

.lightbox-prev { left: -28px; }
.lightbox-next { right: -28px; }

.lightbox-caption {
    margin-top: 1rem;
    font-size: 1.05rem;
    color: var(--text-muted);
    text-align: center;
}

.lightbox-thumbs {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
    overflow-x: auto;
    max-width: 100%;
    padding: 0.5rem;
}

.lightbox-thumb {
    width: 65px;
    height: 65px;
    border-radius: 10px;
    object-fit: cover;
    opacity: 0.5;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-smooth);
}

.lightbox-thumb.active {
    opacity: 1;
    border-color: #ffffff;
}

/* ==========================================================================
   CONTACTO PAGE STYLES & FORM
   ========================================================================== */
.contacto-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
}

.contacto-info h3, .contacto-form-container h3 {
    font-family: var(--font-headings);
    font-size: 2.3rem;
    margin-bottom: 1rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    margin-top: 2rem;
}

.contact-method-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-light);
    transition: var(--transition-smooth);
}

.contact-method-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateX(6px);
}

.method-icon {
    font-size: 1.7rem;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-text {
    display: flex;
    flex-direction: column;
}

.method-title {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.method-value {
    font-family: var(--font-headings);
    font-size: 1.4rem;
    color: var(--text-light);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
}

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

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

.form-group label {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-muted);
}

.form-group input, .form-group select, .form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 0.95rem 1.15rem;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 1.02rem;
    outline: none;
    transition: var(--transition-smooth);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: #ffffff;
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
}

.form-group select option {
    background: #111116;
    color: #ffffff;
}

.btn-block {
    width: 100%;
}

/* BUTTON GENERAL STYLES */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.1rem 1.85rem;
    font-family: var(--font-headings);
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 14px;
    transition: var(--transition-bounce);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--btn-primary-bg);
    color: var(--btn-primary-text);
    box-shadow: 0 8px 30px var(--btn-primary-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.4);
}

.btn-secondary {
    background: var(--btn-secondary-bg);
    border: 1px solid var(--btn-secondary-border);
    color: var(--text-light);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    background: #ffffff;
    color: #000000;
}

.btn-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* FOOTER */
.main-footer {
    background: rgba(5, 5, 7, 0.96);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 4rem 2rem 3rem;
    margin-top: 5rem;
}

.footer-container {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

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

.footer-logo {
    height: 52px;
}

.footer-brand p {
    color: var(--text-muted);
    max-width: 480px;
}

.footer-badge-text {
    color: #d4af37;
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-top: 0.2rem;
}

.footer-copy {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2.2rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-admin-link {
    color: var(--accent-gold) !important;
}

/* FLOATING WHATSAPP WIDGET */
.whatsapp-floating {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ffffff;
    color: #050507;
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
    transition: var(--transition-bounce);
    animation: whitePulse 2.5s infinite;
}

.whatsapp-floating svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.whatsapp-floating .tooltip {
    position: absolute;
    right: 78px;
    background: rgba(5, 5, 7, 0.92);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-light);
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: var(--transition-smooth);
    pointer-events: none;
}

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

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

@keyframes whitePulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.35); }
    70% { box-shadow: 0 0 0 18px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (DESKTOP, TABLET & MOBILE)
   ========================================================================== */
@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-links, .btn-nav-wa {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .page-banner-title {
        font-size: 2.8rem;
    }
    
    .hero-main-title {
        font-size: 3.6rem;
    }

    .hero-cta-group {
        justify-content: center;
    }
    
    .hero-pills {
        justify-content: center;
    }
    
    .nosotros-grid, .contacto-grid {
        grid-template-columns: 1fr;
    }
    
    .lightbox-arrow {
        width: 42px;
        height: 42px;
    }
    .lightbox-prev { left: -10px; }
    .lightbox-next { right: -10px; }
}

@media (max-width: 768px) {
    .hero-main-title {
        font-size: 3.2rem;
    }

    .page-banner {
        padding: 7rem 1.25rem 3.5rem;
    }

    .section-hero {
        padding: 6rem 1.25rem 3rem;
    }
    
    .section-container {
        padding: 4.5rem 1.25rem;
    }
    
    .section-title {
        font-size: 2.4rem;
    }

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

    .albums-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }

    .stats-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-copy {
        flex-direction: column;
        gap: 1.2rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-main-title {
        font-size: 2.7rem;
        line-height: 1.08;
    }

    .page-banner-title {
        font-size: 2.3rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
}
