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

:root {
    --radius: 1rem;
    --background: #13141A;
    --foreground: #F0F0F4;
    --surface: #1A1B23;
    --surface-elevated: #22232D;
    --card: #1A1B23;
    --card-foreground: #F0F0F4;
    --primary: #A3E635;
    --primary-foreground: #13141A;
    --secondary: #22232E;
    --secondary-foreground: #F0F0F4;
    --muted: #22232D;
    --muted-foreground: #8B8D9A;
    --accent: #2A2B36;
    --accent-foreground: #F0F0F4;
    --destructive: #EF4444;
    --destructive-foreground: #F0F0F4;
    --border: rgba(255, 255, 255, 0.08);
    --input: rgba(255, 255, 255, 0.12);
    --ring: #A3E635;
    --lime: #A3E635;
    --lime-glow: #C5F06A;
    --gradient-lime: linear-gradient(135deg, #A3E635, #84CC16);
    --gradient-card: linear-gradient(160deg, rgba(26, 27, 35, 0.9), rgba(20, 21, 28, 0.6));
    --shadow-glow: 0 0 0 1px rgba(163, 230, 53, 0.2), 0 20px 60px -20px rgba(163, 230, 53, 0.35);
    --shadow-card: 0 30px 60px -30px rgba(0, 0, 0, 0.6);
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #0D0E12;
    color: var(--foreground);
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Syne', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: -0.02em;
}

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

/* ===== UTILITY ===== */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-lime);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-glow);
}
.btn-primary:hover {
    transform: scale(1.03);
    box-shadow: 0 0 0 1px rgba(163, 230, 53, 0.4), 0 20px 60px -20px rgba(163, 230, 53, 0.5);
}

.btn-secondary {
    background: var(--surface-elevated);
    color: var(--foreground);
    border: 1px solid var(--border);
}
.btn-secondary:hover {
    background: var(--accent);
}

.btn-outline {
    background: transparent;
    color: var(--foreground);
    border: 1px solid var(--border);
}
.btn-outline:hover {
    background: var(--surface-elevated);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2.5rem;
    background: var(--gradient-lime);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--lime);
}

.badge {
    background: var(--lime);
    color: var(--primary-foreground);
    padding: 0.3rem 1.2rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
}

/* ===== HEADER ===== */
.header {
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--border);
    background: rgba(13, 14, 18, 0.85);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    border-radius: 50%;
    object-fit: cover;
    width: 45px;
    height: 45px;
    border: 1px solid var(--border);
}

.logo-sub {
    font-size: 0.9rem;
    color: var(--muted-foreground);
    font-weight: 400;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}
.nav-list a {
    color: var(--foreground);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    font-size: 0.95rem;
}
.nav-list a:hover {
    color: var(--lime);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--foreground);
    font-size: 1.8rem;
    cursor: pointer;
}

/* ===== HERO ===== */
.hero {
    padding: 4rem 0 5rem;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
}
.hero-sub {
    font-size: 1.2rem;
    color: var(--muted-foreground);
    max-width: 500px;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    object-fit: cover;
    aspect-ratio: 4/3;
}

/* ===== MÉTODO ===== */
.metodo {
    padding: 4rem 0;
}
.metodo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}
.metodo-card {
    background: var(--gradient-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: left;
    transition: transform 0.3s ease;
    position: relative;
}
.metodo-card:hover {
    transform: translateY(-6px);
}
.card-badge {
    position: absolute;
    top: -0.8rem;
    right: 1.5rem;
    background: var(--lime);
    color: var(--primary-foreground);
    padding: 0.2rem 1rem;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.metodo-icon {
    font-size: 2.5rem;
    color: var(--lime);
    margin-bottom: 1rem;
}
.metodo-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}
.metodo-card p {
    color: var(--muted-foreground);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}
.card-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--muted-foreground);
}
.card-stats span i {
    color: var(--lime);
    margin-right: 0.3rem;
}

.metodo-online {
    background: var(--gradient-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    text-align: center;
}
.metodo-online .badge {
    margin-bottom: 0.5rem;
}
.metodo-online h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}
.metodo-online p {
    color: var(--muted-foreground);
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

/* ===== ¿ES PARA TI? ===== */
.para-ti {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.02);
}
.para-ti-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.para-ti-col {
    background: var(--gradient-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 2rem;
}
.para-ti-col h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.para-ti-si h3 i {
    color: var(--lime);
}
.para-ti-no h3 i {
    color: var(--destructive);
}
.para-ti-col ul {
    list-style: none;
    padding: 0;
}
.para-ti-col li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
}
.para-ti-col li:last-child {
    border-bottom: none;
}

/* ===== ENTRENAR ===== */
.entrenar {
    padding: 4rem 0;
}
.entrenar-intro {
    text-align: center;
    max-width: 700px;
    margin: -1.5rem auto 3rem;
    color: var(--muted-foreground);
    font-size: 1.1rem;
}
.entrenar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.entrenar-item {
    background: var(--gradient-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;
}
.entrenar-item:hover {
    transform: translateY(-4px);
}
.entrenar-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.entrenar-item h3 {
    font-size: 1.3rem;
    padding: 1rem 1rem 0.2rem;
}
.entrenar-item p {
    color: var(--muted-foreground);
    font-size: 0.9rem;
    padding: 0 1rem 0.5rem;
}
.entrenar-detalle {
    display: flex;
    gap: 1rem;
    padding: 0 1rem 1rem;
    font-size: 0.85rem;
    color: var(--muted-foreground);
}
.entrenar-detalle i {
    color: var(--lime);
    margin-right: 0.3rem;
}
.entrenar-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0,0,0,0.6);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    color: var(--lime);
    padding: 0.3rem 0.8rem;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid rgba(163, 230, 53, 0.3);
}

/* ===== TESTIMONIOS ===== */
.testimonios {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.02);
}
.stats-container {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}
.stat-item {
    text-align: center;
}
.stat-number {
    font-family: 'Syne', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--lime);
    display: block;
    line-height: 1.2;
}
.stat-label {
    color: var(--muted-foreground);
    font-size: 1rem;
}
.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.testimonio-card {
    background: var(--gradient-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: left;
}
.stars {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}
.testimonio-card p {
    font-style: italic;
    margin-bottom: 0.5rem;
}
.testimonio-autor {
    color: var(--muted-foreground);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===== PRECIOS ===== */
.precios {
    padding: 4rem 0;
}
.precios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.precio-card {
    background: var(--gradient-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
}
.precio-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}
.precio-card p {
    margin: 0.5rem 0;
}
.precio {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--lime);
}
.precio-mes {
    font-weight: 400;
    font-size: 1rem;
    color: var(--muted-foreground);
}
.precio-card small {
    display: block;
    margin-top: 0.5rem;
    color: var(--muted-foreground);
    font-size: 0.85rem;
}

/* ===== CONTACTO ===== */
.contacto {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.02);
}
.contacto-sub {
    text-align: center;
    font-size: 1.2rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}
.contacto-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}
.contacto-info-box,
.contacto-horario {
    background: var(--gradient-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
}
.contacto-info-box h3,
.contacto-horario h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.contacto-info-box p {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}
.contacto-botones {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1rem;
}
.contacto-botones .btn {
    width: 100%;
    justify-content: center;
}
.contacto-direccion {
    color: var(--muted-foreground);
    font-size: 0.95rem;
}
.contacto-horario p {
    color: var(--muted-foreground);
}
.contacto-horario .cerrado {
    color: var(--destructive);
}
.horario-dias {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin-top: 1rem;
    text-align: center;
    font-size: 0.8rem;
}
.horario-dias span {
    background: var(--surface);
    padding: 0.5rem 0;
    border-radius: 0.5rem;
    border: 1px solid var(--border);
}
.horario-dias .cerrado {
    opacity: 0.4;
}

/* ===== UBICACIÓN ===== */
.ubicacion {
    padding: 4rem 0;
    background: var(--gradient-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.ubicacion-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    color: var(--muted-foreground);
}
.ubicacion-text strong {
    color: var(--foreground);
}
.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
}
.map-container iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: 0;
}

/* ===== FAQ ===== */
.faq {
    padding: 4rem 0;
}
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}
.faq-item {
    background: var(--gradient-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
}
.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.faq-item h3 i {
    color: var(--lime);
}
.faq-item p {
    color: var(--muted-foreground);
    font-size: 0.95rem;
}

/* ===== BLOG / POSTS ===== */
.blog {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.02);
}
.blog-intro {
    text-align: center;
    max-width: 600px;
    margin: -1.5rem auto 3rem;
    color: var(--muted-foreground);
    font-size: 1.1rem;
}
.blog-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 1.5rem;
    align-items: start;
}
.blog-side {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Featured card */
.blog-featured {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border);
    background: #1A1B23;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.blog-featured:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 0 1px rgba(163, 230, 53, 0.15), 0 24px 60px -16px rgba(163, 230, 53, 0.2);
}
.blog-featured .blog-card-img {
    height: 420px;
    position: relative;
    overflow: hidden;
}
.blog-featured .blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.blog-featured:hover .blog-card-img img {
    transform: scale(1.05);
}

/* Overlay on image */
.blog-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(13, 14, 18, 0.95) 0%, rgba(13, 14, 18, 0.7) 60%, rgba(13, 14, 18, 0) 100%);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.blog-featured .blog-card-overlay {
    padding: 3rem 2rem 2rem;
}
.blog-card-overlay h3 {
    font-size: 1.15rem;
    line-height: 1.35;
    color: var(--foreground);
}
.blog-featured .blog-card-overlay h3 {
    font-size: 1.5rem;
    line-height: 1.3;
}
.blog-card-overlay p {
    color: var(--muted-foreground);
    font-size: 0.9rem;
    line-height: 1.5;
    display: none;
}
.blog-featured .blog-card-overlay p {
    display: block;
    margin-bottom: 1rem;
}

/* Meta info */
.blog-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.78rem;
    color: var(--muted-foreground);
}
.blog-meta i {
    margin-right: 0.3rem;
    color: var(--lime);
    font-size: 0.7rem;
}

/* Tag */
.blog-tag {
    display: inline-block;
    background: var(--lime);
    color: var(--primary-foreground);
    padding: 0.2rem 0.8rem;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width: fit-content;
}

/* Date */
.blog-date {
    color: var(--muted-foreground);
    font-size: 0.8rem;
    font-weight: 500;
}
.blog-date i {
    margin-right: 0.3rem;
    color: var(--lime);
    font-size: 0.75rem;
}

/* Featured footer */
.blog-card-footer {
    padding: 0.75rem 1.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
}

/* Mini cards (side) */
.blog-mini,
a.blog-mini {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border);
    background: #1A1B23;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}
.blog-mini:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 0 1px rgba(163, 230, 53, 0.15), 0 16px 40px -12px rgba(163, 230, 53, 0.2);
}
.blog-mini .blog-card-img {
    height: 200px;
    position: relative;
    overflow: hidden;
}
.blog-mini .blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.blog-mini:hover .blog-card-img img {
    transform: scale(1.08);
}
.blog-mini .blog-card-overlay {
    padding: 1.5rem 1.25rem 1.25rem;
}

.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
}

/* Blog responsive */
@media (max-width: 900px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .blog-featured .blog-card-img {
        height: 320px;
    }
}
@media (max-width: 768px) {
    .blog-featured .blog-card-img {
        height: 280px;
    }
    .blog-featured .blog-card-overlay {
        padding: 2rem 1.25rem 1.25rem;
    }
    .blog-featured .blog-card-overlay h3 {
        font-size: 1.25rem;
    }
}

/* ===== SINGLE POST PAGE ===== */
.post-single {
    padding: 3rem 0 4rem;
}
.post-single-header {
    position: relative;
    height: 380px;
    overflow: hidden;
    border-radius: var(--radius);
    margin-bottom: 2.5rem;
    border: 1px solid var(--border);
}
.post-single-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.post-single-header .post-header-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 4rem 2.5rem 2rem;
    background: linear-gradient(to top, rgba(13, 14, 18, 0.97) 0%, rgba(13, 14, 18, 0.6) 60%, rgba(13, 14, 18, 0) 100%);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.post-single-header .post-header-overlay h1 {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    color: var(--foreground);
}
.post-single-body {
    max-width: 720px;
    margin: 0 auto;
}
.post-single-body p {
    color: var(--muted-foreground);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.post-single-body p strong {
    color: var(--foreground);
}
.post-single-body h2 {
    font-size: 1.5rem;
    color: var(--lime);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}
.post-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted-foreground);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    transition: color 0.2s;
}
.post-back-link:hover {
    color: var(--lime);
}
@media (max-width: 768px) {
    .post-single-header {
        height: 260px;
    }
    .post-single-header .post-header-overlay {
        padding: 2.5rem 1.5rem 1.25rem;
    }
    .post-single-header .post-header-overlay h1 {
        font-size: 1.6rem;
    }
}

/* ===== LEGAL PAGE ===== */
.legal-content h2 {
    font-size: 1.3rem;
    color: var(--lime);
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
}
.legal-content p {
    color: var(--muted-foreground);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}
.legal-content p strong {
    color: var(--foreground);
}
.legal-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}
.legal-content ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--muted-foreground);
    font-size: 0.95rem;
    line-height: 1.6;
}
.legal-content ul li:last-child {
    border-bottom: none;
}
.legal-content ul li strong {
    color: var(--foreground);
}

/* ===== NEWSLETTER ===== */
.newsletter {
    padding: 4rem 0;
    background: var(--gradient-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.newsletter-text {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 1.5rem;
    color: var(--muted-foreground);
}
.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}
.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1.2rem;
    border-radius: 9999px;
    border: 1px solid var(--input);
    background: var(--surface);
    color: var(--foreground);
    font-family: inherit;
}
.newsletter-form input:focus {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

/* ===== FOOTER ===== */
.footer {
    padding: 3rem 0 1.5rem;
    border-top: 1px solid var(--border);
}
.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
}
.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--foreground);
}
.footer-col ul {
    list-style: none;
    padding: 0;
}
.footer-col ul li {
    margin-bottom: 0.4rem;
    color: var(--muted-foreground);
}
.footer-col ul li a {
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-col ul li a:hover {
    color: var(--lime);
}
.footer-desc {
    color: var(--muted-foreground);
    margin-top: 0.5rem;
}
.footer-local-img {
    max-width: 100%;
    border-radius: var(--radius);
    margin-top: 1rem;
    border: 1px solid var(--border);
}
.social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}
.social-icons a {
    color: var(--muted-foreground);
    font-size: 1.5rem;
    transition: color 0.2s;
}
.social-icons a:hover {
    color: var(--lime);
}
.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.footer-legal a {
    color: var(--muted-foreground);
    font-size: 0.8rem;
    text-decoration: none;
}
.footer-legal a:hover {
    color: var(--lime);
}
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--muted-foreground);
    font-size: 0.9rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .entrenar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .precios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contacto-content {
        grid-template-columns: 1fr;
    }
    .testimonios-grid {
        grid-template-columns: 1fr 1fr;
    }
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-sub {
        margin: 0 auto;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-image {
        order: -1;
    }
    .hero-title {
        font-size: 3rem;
    }
    .metodo-grid {
        grid-template-columns: 1fr;
    }
    .para-ti-grid {
        grid-template-columns: 1fr;
    }
    .testimonios-grid {
        grid-template-columns: 1fr;
    }
    .precios-grid {
        grid-template-columns: 1fr;
    }
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
    .stats-container {
        gap: 2rem;
    }
    .map-container iframe {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .nav-list {
        display: none;
        flex-direction: column;
        background: var(--surface);
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        padding: 1.5rem;
        border-bottom: 1px solid var(--border);
    }
    .nav-list.open {
        display: flex;
    }
    .menu-toggle {
        display: block;
    }
    .entrenar-grid {
        grid-template-columns: 1fr;
    }
    .newsletter-form {
        flex-direction: column;
    }
    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .social-icons {
        justify-content: center;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .horario-dias {
        grid-template-columns: repeat(4, 1fr);
    }
    .map-container iframe {
        height: 250px;
    }
}