:root {
    --bg-dark: #0a0a0c;
    --bg-card: #141418;
    --bg-card-hover: #1c1c22;
    --text-main: #f5f5f7;
    --text-muted: #a1a1aa;
    
    /* Accents */
    --primary-red: #e63946;
    --primary-red-hover: #c82333;
    --whatsapp-green: #25d366;
    --whatsapp-hover: #1da851;
    --instagram-color: #e1306c;
    
    --border-color: #27272a;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    
    --transition-fast: 0.25s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Basic Setup */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

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

/* Layout Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 80px 0;
}

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

.text-muted {
    color: var(--text-muted);
}

/* Grid System */
.grid {
    display: grid;
    gap: 30px;
}

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

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

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

/* Typography Headings */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.section-tag {
    display: inline-block;
    color: var(--primary-red);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.4rem;
    margin-bottom: 20px;
    color: #ffffff;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(10, 10, 12, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-fast);
    padding: 12px 0;
}

.navbar.scrolled {
    padding: 8px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

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

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-main);
    transition: color var(--transition-fast);
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: var(--primary-red);
}

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

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-main);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all var(--transition-smooth);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-red);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: var(--primary-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.4);
}

.btn-outline {
    background: transparent;
    border-color: #ffffff;
    color: #ffffff;
}

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

.btn-whatsapp-nav {
    background-color: var(--whatsapp-green);
    color: #ffffff;
    padding: 8px 18px;
    font-size: 0.85rem;
}

.btn-whatsapp-nav:hover {
    background-color: var(--whatsapp-hover);
}

.btn-whatsapp-large {
    background-color: var(--whatsapp-green);
    color: #ffffff;
    padding: 16px 36px;
    font-size: 1.1rem;
    border-radius: 50px;
}

.btn-whatsapp-large:hover {
    background-color: var(--whatsapp-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.btn-instagram-large {
    background-color: transparent;
    border-color: var(--instagram-color);
    color: #ffffff;
    padding: 16px 36px;
    font-size: 1.1rem;
    border-radius: 50px;
}

.btn-instagram-large:hover {
    background-color: var(--instagram-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(225, 48, 108, 0.4);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.pulse-effect {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Unificaci¨Žn de botones en Hero */
.hero-cta-box .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.hero-cta-box .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    height: 46px;
    box-sizing: border-box;
}

/* Bot¨Žn WhatsApp compacto */
.btn-whatsapp-hero {
    background-color: #25D366;
    color: #ffffff !important;
    border: 1px solid #25D366;
}
.btn-whatsapp-hero:hover {
    background-color: #1eb957;
    border-color: #1eb957;
    transform: translateY(-2px);
}

/* Bot¨Žn Instagram compacto */
.btn-instagram-hero {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff !important;
    border: none;
}
.btn-instagram-hero:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Bot¨Žn Conoce m¨˘s */
.btn-outline-hero {
    background: transparent;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.4);
}
.btn-outline-hero:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* Hero Section (Clean Layout) */
.hero-section {
    padding-top: 110px;
    padding-bottom: 60px;
    background-color: var(--bg-dark);
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.hero-banner-wrapper {
    width: 100%;
    max-width: 900px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    background-color: #000000;
}

.hero-clean-img {
    width: 100%;
    max-height: 550px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.hero-cta-box {
    text-align: center;
    max-width: 750px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #e4e4e7;
    margin-bottom: 25px;
    line-height: 1.6;
}

.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* About Section */
.about-section {
    background-color: #0d0d10;
}

.about-highlights {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.highlight-item {
    display: flex;
    flex-direction: column;
}

.highlight-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-red);
}

.highlight-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

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

.media-card {
    background: var(--bg-card);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.logo-card {
    max-width: 380px;
    width: 100%;
    border-radius: 8px;
}

/* Benefits Section */
.benefits-section {
    background-color: var(--bg-dark);
}

.cards-grid {
    margin-top: 40px;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 35px 25px;
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-8px);
    border-color: rgba(230, 57, 70, 0.4);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(230, 57, 70, 0.1);
    color: var(--primary-red);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Schedule Section */
.schedule-section {
    background-color: #0d0d10;
}

.schedule-box {
    margin-top: 30px;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.schedule-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    border-bottom: 1px solid var(--border-color);
}

.schedule-row:last-child {
    border-bottom: none;
}

.schedule-row .day {
    font-weight: 700;
    font-size: 1.05rem;
}

.schedule-row .time {
    color: var(--text-muted);
    font-weight: 600;
}

.badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-open {
    background: rgba(37, 211, 102, 0.15);
    color: var(--whatsapp-green);
}

.badge-closed {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
}

.banner-box {
    background: linear-gradient(135deg, #1f1f26 0%, #121217 100%);
    border: 1px solid var(--border-color);
    padding: 50px 40px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.banner-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-red);
}

.banner-box h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

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

/* Location Section */
.location-section {
    background-color: var(--bg-dark);
}

.location-card {
    margin-top: 40px;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
}

.location-details {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.loc-icon {
    color: var(--primary-red);
    margin-bottom: 15px;
}

.loc-text h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.loc-text p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
    filter: grayscale(0.8) invert(0.9) contrast(1.2);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(180deg, #0d0d10 0%, var(--bg-dark) 100%);
    padding: 100px 0;
}

.cta-heading {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.cta-description {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px auto;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background-color: #050507;
    border-top: 1px solid var(--border-color);
    padding-top: 70px;
}

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

.footer-logo {
    height: 48px;
    margin-bottom: 20px;
}

.footer-col p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.links-col ul li {
    margin-bottom: 10px;
}

.links-col ul li a {
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.links-col ul li a:hover {
    color: var(--primary-red);
}

.contact-col a {
    color: var(--text-main);
    text-decoration: underline;
}

.footer-bottom {
    background-color: #000000;
    padding: 20px 0;
    text-align: center;
    color: #71717a;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp-green);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    z-index: 999;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background-color: var(--whatsapp-hover);
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Responsive Styles */
@media (max-width: 992px) {
    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
    }

    .location-card {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 10px 0;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-dark);
        padding: 20px;
        border-bottom: 1px solid var(--border-color);
        display: none;
    }

    .nav-menu.active {
        display: block;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .btn-lg {
        width: 100%;
    }

    .cta-heading {
        font-size: 2rem;
    }

    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .floating-whatsapp svg {
        width: 26px;
        height: 26px;
    }
}