/* Reset & Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Theme 1: Neon Tech (Default) */
    --bg-page: #1a1c1b;
    --bg-card: #302f2c;
    --bg-light: #dfddd6;
    --text-primary: #d9fb06;
    --text-secondary: #888680;
    --text-muted: #302f2c;
    --text-inverse: #1a1c1b;
    --border-light: rgba(63, 72, 22, 0.5);
    --border-medium: #3f4816;
    --border-strong: #888680;
    --brand-primary: #d9fb06;
    --brand-hover: rgba(217, 251, 6, 0.8);
    --brand-active: rgba(217, 251, 6, 0.6);
    --accent-red: #EF4444;
    --accent-orange: #F97316;
    --accent-yellow: #FBBF24;
}

[data-theme="red-black"] {
    --bg-page: #000000;
    --bg-card: #1a0000;
    --bg-light: #fff5f5;
    --text-primary: #EF4444;
    --text-secondary: #fca5a5;
    --text-muted: #450a0a;
    --text-inverse: #ffffff;
    --border-light: rgba(239, 68, 68, 0.2);
    --border-medium: #7f1d1d;
    --border-strong: #991b1b;
    --brand-primary: #EF4444;
    --brand-hover: rgba(239, 68, 68, 0.8);
    --brand-active: rgba(239, 68, 68, 0.6);
    --accent-red: #dc2626;
    --accent-orange: #ea580c;
    --accent-yellow: #f59e0b;
}

[data-theme="orange-energy"] {
    --bg-page: #0f0f0f;
    --bg-card: #1a0f00;
    --bg-light: #fff7ed;
    --text-primary: #F97316;
    --text-secondary: #fdba74;
    --text-muted: #431407;
    --text-inverse: #ffffff;
    --border-light: rgba(249, 115, 22, 0.2);
    --border-medium: #7c2d12;
    --border-strong: #9a3412;
    --brand-primary: #F97316;
    --brand-hover: rgba(249, 115, 22, 0.8);
    --brand-active: rgba(249, 115, 22, 0.6);
    --accent-red: #dc2626;
    --accent-orange: #ea580c;
    --accent-yellow: #f59e0b;
}

[data-theme="yellow-power"] {
    --bg-page: #0a0a0a;
    --bg-card: #1a1a00;
    --bg-light: #fefce8;
    --text-primary: #FBBF24;
    --text-secondary: #fde047;
    --text-muted: #422006;
    --text-inverse: #000000;
    --border-light: rgba(251, 191, 36, 0.2);
    --border-medium: #713f12;
    --border-strong: #854d0e;
    --brand-primary: #FBBF24;
    --brand-hover: rgba(251, 191, 36, 0.8);
    --brand-active: rgba(251, 191, 36, 0.6);
    --accent-red: #dc2626;
    --accent-orange: #f97316;
    --accent-yellow: #eab308;
}

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

body {
    font-family: 'Inter', Arial, sans-serif;
    background: var(--bg-page);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 767px) {
    .container {
        padding: 0 20px;
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 28, 27, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
    background: rgba(26, 28, 27, 0.95);
    padding: 0.5rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: 2px;
}

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

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--brand-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 80%;
}

.header-cta {
    white-space: nowrap;
}

.theme-switcher {
    background: var(--bg-card);
    border: 1px solid var(--border-medium);
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.theme-switcher:hover {
    transform: rotate(180deg) scale(1.1);
    background: var(--border-medium);
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

@media (max-width: 968px) {
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(26, 28, 27, 0.98);
        flex-direction: column;
        padding: 2rem;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .nav.active {
        transform: translateY(0);
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-cta {
        display: none;
    }
}

/* Buttons */
.btn-primary {
    background: var(--brand-primary);
    color: var(--text-inverse);
    border: none;
    border-radius: 10rem;
    padding: 1em 1.5em;
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
    min-height: 48px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.1em;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.btn-primary:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-secondary {
    background: transparent;
    color: var(--brand-primary);
    border: 1px solid var(--brand-primary);
    border-radius: 10rem;
    padding: 1em 1.5em;
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 48px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.1em;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.btn-secondary:hover {
    background: var(--brand-primary);
    color: var(--text-inverse);
    transform: scale(1.05);
}

.btn-secondary:active {
    transform: scale(0.98);
}

.btn-large {
    font-size: 1.2rem;
    padding: 1.2em 2em;
    min-height: 60px;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 40px 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, var(--bg-page) 0%, var(--border-medium) 100%);
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at 30% 50%, rgba(217, 251, 6, 0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1200px;
}

.hero-title {
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-weight: 900;
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 0.9;
    color: var(--text-primary);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--brand-primary);
    line-height: 1;
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.scroll-indicator {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.7rem;
    animation: bounce 2s infinite;
}

.arrow-down {
    font-size: 1.5rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Promo Banner */
.promo-banner {
    background: var(--accent-red);
    padding: 2rem 0;
    text-align: center;
    animation: slideInDown 0.5s ease;
}

.promo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.promo-icon {
    font-size: 3rem;
    animation: pulse 2s infinite;
}

.promo-title {
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: #ffffff;
    margin: 0;
}

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

/* Sections */
.section {
    padding: 96px 0;
}

.section-title {
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-weight: 900;
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-align: center;
    color: var(--text-primary);
    text-transform: uppercase;
    margin-bottom: 4rem;
    letter-spacing: 2px;
}

/* Clases Section */
.clases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.clase-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.clase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.clase-card.popular {
    border: 2px solid var(--brand-primary);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--brand-primary);
    color: var(--text-inverse);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    z-index: 2;
    text-transform: uppercase;
}

.clase-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.clase-content {
    padding: 2rem;
}

.clase-title {
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.clase-desc {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
}

.clase-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.badge {
    background: var(--border-medium);
    color: var(--text-primary);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.duration {
    color: var(--text-secondary);
    font-weight: 600;
}

/* Planes Section */
.planes-section {
    background: var(--bg-card);
}

.planes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.plan-card {
    background: var(--bg-page);
    border: 1px solid var(--border-medium);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.plan-card.featured {
    border: 3px solid var(--brand-primary);
    transform: scale(1.05);
    z-index: 1;
}

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

.plan-badge {
    background: var(--border-medium);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.featured-badge {
    background: var(--brand-primary);
    color: var(--text-inverse);
}

.plan-name {
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.plan-price {
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.3rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.amount {
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-size: 4rem;
    color: var(--text-primary);
    line-height: 1;
}

.featured-price .amount {
    font-size: 5rem;
    color: var(--brand-primary);
}

.period {
    color: var(--text-secondary);
    align-self: flex-end;
    margin-bottom: 1rem;
}

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

.plan-features li {
    padding: 0.8rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-light);
}

.plan-features li:last-child {
    border-bottom: none;
}

.planes-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.promo-floating {
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-orange) 100%);
    color: #ffffff;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    font-size: 1.2rem;
    animation: pulse 2s infinite;
    max-width: 600px;
    margin: 0 auto;
}

/* Instalaciones Section */
.instalaciones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.instalacion-item {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.instalacion-item:hover {
    transform: scale(1.05);
}

.instalacion-image {
    height: 300px;
    background-size: cover;
    background-position: center;
}

.equipamiento-list {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 12px;
}

.equipamiento-title {
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    text-align: center;
}

.equipamiento-items {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.equipamiento-items li {
    color: var(--text-secondary);
    font-size: 1.1rem;
    padding: 0.5rem;
}

/* Transformaciones Section */
.transformaciones-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 3rem;
    overflow: hidden;
}

.slider-wrapper {
    overflow: hidden;
    border-radius: 12px;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease;
}

.transformation-item {
    min-width: 100%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
}

.transformation-image {
    height: 400px;
}

.before-after {
    display: flex;
    height: 100%;
}

.before,
.after {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-size: 2rem;
}

.transformation-info {
    padding: 2rem;
    text-align: center;
}

.transformation-name {
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.transformation-quote {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1rem;
}

.transformation-time {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.rating {
    font-size: 1.2rem;
}

.slider-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: var(--brand-primary);
    color: var(--text-inverse);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: 10px;
}

.slider-btn.next {
    right: 10px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-medium);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.slider-dot.active {
    background: var(--brand-primary);
    transform: scale(1.3);
}

.cta-transform {
    display: block;
    margin: 0 auto;
    max-width: 400px;
}

/* Beneficios Section */
.beneficios-section {
    background: var(--bg-card);
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.beneficio-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-page);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.beneficio-item:hover {
    transform: translateY(-5px);
}

.beneficio-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.beneficio-title {
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.beneficio-desc {
    color: var(--text-secondary);
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid var(--border-medium);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--border-medium);
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Contacto Section */
.contacto-section {
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--bg-page) 100%);
}

.contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

@media (max-width: 968px) {
    .contacto-grid {
        grid-template-columns: 1fr;
    }
}

.contacto-form-container {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.contacto-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.form-group input,
.form-group select {
    padding: 1rem;
    border: 1px solid var(--border-medium);
    border-radius: 8px;
    background: var(--bg-page);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: 'Inter', Arial, sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(217, 251, 6, 0.1);
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    text-transform: none;
    font-weight: 500;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.form-message {
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    margin-top: 1rem;
    display: none;
}

.form-message.success {
    background: #10b981;
    color: #ffffff;
    display: block;
}

.form-message.error {
    background: #ef4444;
    color: #ffffff;
    display: block;
}

.contacto-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.info-item h3 {
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.info-item p,
.info-item a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.6;
}

.info-item a:hover {
    color: var(--brand-primary);
}

.btn-whatsapp {
    background: var(--accent-red);
    color: #ffffff;
    padding: 1.5rem 2rem;
    border-radius: 10rem;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
}

.btn-whatsapp:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.4);
}

.whatsapp-icon {
    font-size: 2rem;
}

/* Ubicación Section */
.map-container {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

.ubicacion-info {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.ubicacion-info p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.ubicacion-info strong {
    color: var(--text-primary);
}

/* Footer */
.footer {
    background: var(--bg-page);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-medium);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.footer-tagline {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

.social-link {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    font-weight: 600;
    padding: 0.5rem 1rem;
    background: var(--bg-card);
    border-radius: 8px;
}

.social-link:hover {
    color: var(--brand-hover);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--brand-primary);
    padding-left: 5px;
}

.footer-col p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-medium);
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--accent-red);
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--accent-red);
    opacity: 0.7;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: var(--brand-primary);
    color: var(--text-inverse);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .map-container iframe{
        height: 400px;
    }
}
@media (max-width: 768px) {
    .hero-section {
        padding: 100px 20px 60px;
        min-height: 90vh;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        width: 100%;
    }

    .section {
        padding: 60px 0;
    }

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

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

    .plan-card.featured {
        transform: scale(1);
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .slider-btn.prev {
        left: 10px;
    }

    .slider-btn.next {
        right: 10px;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }

    .back-to-top {
        bottom: 80px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    .map-container iframe{
        height: 300px;
    }
}

@media (max-width: 480px) {
    .promo-content {
        flex-direction: column;
        gap: 1rem;
    }

    .instalaciones-grid {
        grid-template-columns: 1fr;
    }
    .map-container iframe{
        height: 300px !important;
    }

    .transformation-image {
        height: 300px;
    }

    .contacto-form-container {
        padding: 1.5rem;
    }
}