/*
 * BASE Centro de Entrenamiento
 * Main Stylesheet - index.html
 * Versión 2.0 - 2025
 * Actualizado con todas las secciones y responsive optimizado
 */

/* ===================================
   CARGA DE FUENTES
   =================================== */
@font-face {
    font-family: 'TUSKER GROTESK';
    src: url('../fonts/tuskergrotesk-7600semibold-webfont.woff2') format('woff2'),
        url('../fonts/tuskergrotesk-7600semibold-webfont.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Haas Unica W1G';
    src: url('../fonts/neuehaasunicapro-regular-webfont.woff2') format('woff2'),
        url('../fonts/neuehaasunicapro-regular-webfont.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Haas Unica W1G';
    src: url('../fonts/neuehaasunicapro-medium-webfont.woff2') format('woff2'),
        url('../fonts/neuehaasunicapro-medium-webfont.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Haas Unica W1G';
    src: url('../fonts/neuehaasunicapro-heavy-webfont.woff2') format('woff2'),
        url('../fonts/neuehaasunicapro-heavy-webfont.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

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

:root {
    --color-dark-gray: #323738;
    --color-cream: #FDFAF3;
    --color-copper: #C68346;
    --color-steel-blue: #4682B4;
    --color-slate: #485E73;

    --font-display: 'TUSKER GROTESK', sans-serif;
    --font-body: 'Neue Haas Unica W1G', 'Helvetica Neue', Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-dark-gray);
    background: var(--color-cream);
    -webkit-font-smoothing: antialiased;
}

/* ===================================
   NAVEGACIÓN
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--color-dark-gray);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    transition: padding 0.3s ease;
}

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

.navbar-logo-img {
    height: 50px;
    width: auto;
}

.navbar-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.navbar-menu a {
    font-weight: 500;
    color: var(--color-cream);
    text-decoration: none;
    transition: color 0.3s ease;
}

.navbar-menu a:hover {
    color: var(--color-copper);
}

.navbar-cta {
    background: var(--color-copper);
    color: var(--color-cream);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.navbar-cta:hover {
    background: var(--color-steel-blue);
    transform: scale(1.05);
}

/* Menu móvil */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--color-copper);
    transition: all 0.3s ease;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    background: linear-gradient(135deg, var(--color-dark-gray) 0%, var(--color-slate) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/FORMAS-42.png') center/cover;
    opacity: 0.05;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero h1 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 5em;
    color: var(--color-copper);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease;
    text-align: center;
}

.hero-logo {
    height: auto;
    width: 300px;
    max-width: 80vw;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 2em;
    color: var(--color-copper);
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-description {
    font-weight: 500;
    font-size: 1.3em;
    color: var(--color-cream);
    opacity: 0.95;
    margin-bottom: 40px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.btn-primary {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1.2em;
    padding: 18px 45px;
    background: var(--color-copper);
    color: var(--color-cream);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(198, 131, 70, 0.4);
    display: inline-block;
}

.btn-primary:hover {
    background: var(--color-steel-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(70, 130, 180, 0.5);
}

.btn-secondary {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1.2em;
    padding: 18px 45px;
    background: transparent;
    color: var(--color-cream);
    border: 2px solid var(--color-cream);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--color-cream);
    color: var(--color-dark-gray);
}

/* ===================================
   SECCIONES
   =================================== */
.section {
    padding: 50px 20px;
}

/* Sección Qué es BASE - Layout 33%-66% */
.que-es-base {
    background-color: #c7844c;
}

.que-es-container {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.que-es-image {
    flex: 0 0 33%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.que-es-image img {
    width: 100%;
    max-width: 350px;
    height: auto;
}

.que-es-content {
    flex: 0 0 66%;
}

.que-es-text {
    text-align: left;
}

.que-es-text p {
    font-size: 1.2em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--color-dark-gray);
}

.inline-logo {
    height: 1.2em;
    vertical-align: middle;
    margin: 0 5px;
}

.inline-logo-small {
    height: 1em;
    vertical-align: middle;
    margin-right: 5px;
}

/* Sección Qué Creemos - Layout 66%-34% (invertido) */
.que-creemos-container {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.que-creemos-text {
    flex: 0 0 66%;
    text-align: right;
}

.que-creemos-text h2 {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 3em;
    color: var(--color-copper);
    margin-bottom: 30px;
    text-align: right;
}

.que-creemos-text p {
    font-size: 1.2em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--color-cream);
}

.que-creemos-text img {
    height: 1em;
    vertical-align: middle;
    margin: 0 3px;
}

.que-creemos-image {
    flex: 0 0 34%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.que-creemos-image img {
    width: 100%;
    max-width: 320px;
    height: auto;
}

/* Estilos adicionales para nuevas secciones */
.hero {
    background: var(--color-cream);
    color: var(--color-dark-gray);
    min-height: 70vh;
}

.hero h1 {
    color: var(--color-copper);
}

.hero-tagline {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.8em;
    color: var(--color-dark-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 30px 0;
}

.hero-tagline-registro {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.8em;
    color: var(--color-dark-cream);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 30px 0;
}

.hero-cta-dual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
}

.hero-cta-dual .cta-text {
    font-weight: 500;
    font-size: 1.2em;
    color: var(--color-slate);
}

.btn-gradient {
    background: linear-gradient(135deg, var(--color-copper) 0%, var(--color-steel-blue) 100%);
    font-size: 1.3em;
    padding: 20px 50px;
}

.btn-gradient:hover {
    background: linear-gradient(135deg, var(--color-steel-blue) 0%, var(--color-copper) 100%);
}

/* Proceso - Cómo lo hacemos */
.proceso-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto;
}

.proceso-step {
    text-align: center;
    padding: 30px 20px;
    background: var(--color-cream);
    border: 2px solid var(--color-copper);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.proceso-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(198, 131, 70, 0.2);
}

.proceso-number {
    font-family: var(--font-display);
    font-size: 3em;
    color: var(--color-copper);
    margin-bottom: 15px;
}

.proceso-step h3 {
    font-weight: 800;
    font-size: 1.2em;
    color: var(--color-dark-gray);
    margin-bottom: 10px;
}

/* Coaches */
.coaches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 50px auto;
}

.coach-card {
    background: var(--color-cream);
    border: 2px solid var(--color-slate);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.coach-card:hover {
    border-color: var(--color-copper);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(198, 131, 70, 0.25);
}

.coach-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: 0 auto 25px;
    border: 4px solid var(--color-copper);
    background: var(--color-slate);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4em;
    overflow: hidden;
}

.coach-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.coach-card h3 {
    font-weight: 800;
    font-size: 1.8em;
    color: var(--color-copper);
    margin-bottom: 10px;
}

.coach-subtitle {
    font-weight: 500;
    font-size: 1.1em;
    color: var(--color-slate);
    font-style: italic;
    margin-bottom: 20px;
}

.coach-credentials {
    text-align: left;
    margin-top: 20px;
    padding-left: 30px;
}

.coach-credentials li {
    margin-bottom: 8px;
    color: var(--color-dark-gray);
    font-weight: 400;
}

/* Intro de coaches */
.coaches-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.coaches-intro p {
    font-size: 1.2em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--color-cream);
}

/* Proceso Description */
.proceso-description {
    max-width: 900px;
    margin: 50px auto 0;
    text-align: center;
}

.proceso-description p {
    font-size: 1.2em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--color-dark-gray);
}

/* CTA Section Description */
.cta-description {
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Service Card Details */
.service-detail {
    margin-top: 15px;
}

.service-emphasis {
    font-weight: 500;
}

.service-note {
    margin-top: 15px;
    font-style: italic;
    color: var(--color-copper);
}

/* Section Horarios */
.section-horarios {
    background: var(--color-copper);
}

/* Section Quienes Somos */
.section-quienes-somos {
    background: var(--color-steel-blue);
    padding-top: 20px;
    padding-bottom: 20px;
}

/* CTA Final */
.cta-final {
    background: linear-gradient(135deg, var(--color-dark-gray) 0%, var(--color-slate) 100%);
    color: var(--color-cream);
}

.cta-final-title {
    color: var(--color-copper);
}

.cta-final-text {
    font-size: 1.3em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.cta-final-buttons {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.btn-cortesia {
    background: var(--color-copper);
    max-width: 500px;
    width: 100%;
}

.btn-whatsapp {
    background: #25D366;
    max-width: 500px;
    width: 100%;
}

.btn-whatsapp:hover {
    background: #20ba5a;
}

/* Contact Details */
.contact-detail {
    font-size: 14px;
}

/* Footer Logo Images */
.footer-logo-img {
    width: 150px;
    height: auto;
}

.footer-logo-inline {
    height: 1em;
    vertical-align: middle;
    margin: 0 5px;
}

.footer-rights {
    margin-top: 8px;
}

/* Horarios */
.horarios-intro {
    text-align: center;
    font-size: 1.2em;
    color: var(--color-cream);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.horarios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 50px auto;
}

.horario-card {
    background: var(--color-cream);
    border: 2px solid var(--color-slate);
    border-radius: 15px;
    padding: 40px 30px;
    transition: all 0.3s ease;
}

.horario-card:hover {
    border-color: var(--color-copper);
    box-shadow: 0 10px 30px rgba(198, 131, 70, 0.2);
}

.horario-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.horario-card h3 {
    font-weight: 800;
    font-size: 1.6em;
    color: var(--color-copper);
    margin-bottom: 15px;
}

.horario-description {
    color: var(--color-slate);
    margin-bottom: 20px;
    line-height: 1.7;
}

.horario-duration {
    font-weight: 500;
    color: var(--color-dark-gray);
    margin-bottom: 25px;
    padding: 10px;
    background: rgba(198, 131, 70, 0.1);
    border-radius: 8px;
}

.horario-schedule {
    margin-top: 25px;
}

.schedule-block {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(72, 94, 115, 0.05);
    border-radius: 10px;
}

.schedule-block h4 {
    font-weight: 800;
    color: var(--color-copper);
    margin-bottom: 15px;
    font-size: 1.1em;
}

.schedule-times {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.time-slot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.time-label {
    font-weight: 500;
    color: var(--color-dark-gray);
}

.time-value {
    font-weight: 400;
    color: var(--color-slate);
}

.horario-note {
    margin-top: 20px;
    padding: 15px;
    background: rgba(198, 131, 70, 0.1);
    border-left: 3px solid var(--color-copper);
    border-radius: 5px;
}

.horario-note small {
    color: var(--color-slate);
    font-size: 0.9em;
    line-height: 1.6;
}

.section-title {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 3em;
    color: var(--color-dark-gray);
    text-align: center;
    margin-bottom: 20px;
}

.section-title-listo {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 2em;
    color: var(--color-cream);
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    font-weight: 500;
    font-size: 1.3em;
    color: var(--color-slate);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.highlight {
    color: var(--color-copper);
    font-weight: 800;
}

/* ===================================
   SERVICIOS
   =================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1600px;
    margin: 0 auto;
}

.service-card {
    background: var(--color-cream);
    border: 2px solid var(--color-slate);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--color-copper);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(198, 131, 70, 0.25);
}

.service-icon {
    font-size: 4em;
    margin-bottom: 20px;
    display: block;
}

.service-card h3 {
    font-weight: 800;
    font-size: 1.5em;
    color: var(--color-copper);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--color-slate);
    line-height: 1.7;
}

/* ===================================
   BENEFICIOS
   =================================== */
.benefits {
    background: linear-gradient(135deg, var(--color-dark-gray) 0%, var(--color-slate) 100%);
    color: var(--color-cream);
}

.que-es-base {
    background-color: #c7844c;
}

.benefits .section-title {
    color: var(--color-copper);
}

.benefits .section-subtitle {
    color: var(--color-cream);
    opacity: 0.95;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    text-align: center;
    padding: 30px 20px;
}

.benefit-item .icon {
    font-size: 3.5em;
    margin-bottom: 20px;
    display: block;
}

.benefit-item h3 {
    font-weight: 800;
    font-size: 1.4em;
    color: var(--color-copper);
    margin-bottom: 12px;
}

.benefit-item p {
    color: var(--color-cream);
    opacity: 0.9;
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    background: var(--color-copper);
    text-align: center;
    padding: 80px 20px;
}

.cta-section h2 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 3.5em;
    color: var(--color-cream);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 25px;
}

.cta-section p {
    font-weight: 500;
    font-size: 1.4em;
    color: var(--color-cream);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-primary {
    background: var(--color-dark-gray);
    font-size: 1.3em;
    padding: 20px 50px;
}

.cta-section .btn-primary:hover {
    background: var(--color-slate);
    transform: scale(1.08);
}

/* ===================================
   CONTACTO
   =================================== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    background: var(--color-cream);
    border: 2px solid var(--color-slate);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--color-copper);
    transform: translateY(-5px);
}

.contact-card .icon {
    font-size: 3em;
    color: var(--color-copper);
    margin-bottom: 20px;
    display: block;
}

.contact-card h3 {
    font-weight: 800;
    font-size: 1.4em;
    color: var(--color-dark-gray);
    margin-bottom: 15px;
}

.contact-card a {
    color: var(--color-copper);
    font-weight: 500;
    text-decoration: none;
    font-size: 1.1em;
}

.contact-card a:hover {
    color: var(--color-steel-blue);
}

.contact-card p {
    color: var(--color-slate);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--color-dark-gray);
    color: var(--color-cream);
    padding: 60px 20px 30px;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 3em;
    color: var(--color-copper);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
}

.footer-tagline {
    font-weight: 500;
    font-size: 1.2em;
    margin-bottom: 40px;
    opacity: 0.9;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--color-cream);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-copper);
}

.footer-social {
    margin-bottom: 40px;
}

.social-btn {
    display: inline-block;
    padding: 12px 30px;
    margin: 8px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.instagram-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.instagram-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(188, 24, 136, 0.4);
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.whatsapp-btn:hover {
    background: #20ba5a;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid var(--color-slate);
    opacity: 0.8;
}

.section-suscribe { background: var(--color-copper); display:flex; justify-content:center; padding:60px 20px; }
.suscribe-card { width:100%; max-width:720px; background:#fff; border:2px solid var(--color-slate);
  border-radius:16px; padding:32px; box-shadow:0 12px 30px rgba(0,0,0,.06); }
.sus-title { font-weight:800; font-size:2rem; color:var(--color-dark-gray); margin-bottom:6px; text-align:center; }
.sus-subtitle { color:var(--color-slate); text-align:center; margin-bottom:20px; }
.sus-form { display:grid; gap:16px; }
.float-group { position:relative; }
.float-input { width:100%; padding:20px 16px 14px; font-size:1.25rem; border:2px solid var(--color-slate);
  border-radius:12px; outline:none; background:#fff; color:var(--color-dark-gray); transition:border .2s, padding .2s; }
.float-input:focus { border-color: var(--color-copper); }
.float-label { position:absolute; left:14px; top:50%; transform:translateY(-50%);
  background:#fff; padding:0 6px; color:var(--color-slate); pointer-events:none; transition:all .18s ease-in-out; font-size:1.15rem; }
.float-input:focus + .float-label,
.float-input:not(:placeholder-shown) + .float-label { top:0; transform:translateY(-55%); font-size:.85rem; color:var(--color-copper); }
.sus-consent { font-size:.95rem; color:var(--color-dark-gray); display:flex; align-items:center; gap:8px; }
.sus-btn { width:100%; max-width:420px; margin:6px auto 0; display:block; }
.sus-msg { margin-top:12px; text-align:center; font-weight:500; }
.sus-msg.ok { color:#0b7a35; }
.sus-msg.err { color:#c0392b; }


@media (max-width: 480px) {
    .suscribe-card {
        padding: 24px;
    }

    .float-input {
        font-size: 1.1rem;
    }

    .float-label {
        font-size: 1rem;
    }
}

/* ===================================
   ANIMACIONES
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 4em;
    }

    .section-title {
        font-size: 2.5em;
    }

    .que-creemos-text h2 {
        font-size: 2.5em;
    }

    .coach-card h3 {
        font-size: 1.6em;
    }
}

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

    .navbar-logo-img {
        height: 40px;
    }

    .navbar-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--color-dark-gray);
        flex-direction: column;
        padding: 40px;
        transition: left 0.3s ease;
    }

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

    .menu-toggle {
        display: flex;
    }

    /* Hero Section - Mobile */
    .hero {
        padding: 120px 20px 60px;
        min-height: 80vh;
    }

    .hero h1 {
        font-size: 3em;
        letter-spacing: 0.08em;
    }

    .hero-logo {
        width: 200px;
    }

    .hero-subtitle {
        font-size: 1.6em;
    }

    .hero-description {
        font-size: 1.1em;
    }

    .hero-tagline {
        font-size: 1.4em;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 350px;
    }

    .btn-gradient {
        font-size: 1.1em;
        padding: 18px 40px;
    }

    /* Secciones - Mobile */
    .section {
        padding: 50px 20px;
    }

    .section-title {
        font-size: 2.2em;
    }

    /* Qué es BASE - Mobile */
    .que-es-container {
        flex-direction: column;
        gap: 30px;
    }

    .que-es-image {
        flex: 1 1 100%;
    }

    .que-es-image img {
        max-width: 250px;
    }

    .que-es-content {
        flex: 1 1 100%;
    }

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

    .que-es-text p {
        font-size: 1.1em;
    }

    /* Qué Creemos - Mobile */
    .que-creemos-container {
        flex-direction: column;
        gap: 30px;
    }

    .que-creemos-text {
        flex: 1 1 100%;
        text-align: center;
    }

    .que-creemos-text h2 {
        text-align: center;
        font-size: 2.2em;
    }

    .que-creemos-text p {
        font-size: 1.1em;
    }

    .que-creemos-image {
        flex: 1 1 100%;
        justify-content: center;
    }

    .que-creemos-image img {
        max-width: 200px;
    }

    /* Proceso - Mobile */
    .proceso-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .proceso-number {
        font-size: 2.5em;
    }

    .proceso-step h3 {
        font-size: 1.1em;
    }

    .proceso-description p {
        font-size: 1.1em;
    }

    /* Coaches - Mobile */
    .coaches-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .coaches-intro p {
        font-size: 1.1em;
        color: var(--color-cream);
    }

    .coach-photo {
        width: 150px;
        height: 150px;
        font-size: 3.5em;
    }

    .coach-card h3 {
        font-size: 1.6em;
    }

    .coach-subtitle {
        font-size: 1em;
    }

    /* Horarios - Mobile */
    .horarios-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .horario-icon {
        font-size: 2.5em;
    }

    .horario-card h3 {
        font-size: 1.4em;
    }

    .time-slot {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    /* CTA Section - Mobile */
    .cta-section h2 {
        font-size: 2.5em;
    }

    .cta-section p,
    .cta-description {
        font-size: 1.2em;
    }

    .cta-final-text {
        font-size: 1.2em;
    }

    .cta-final-buttons {
        width: 100%;
        padding: 0 20px;
    }

    .btn-cortesia,
    .btn-whatsapp {
        max-width: 100%;
    }

    /* Footer - Mobile */
    .footer-logo-img {
        width: 120px;
    }

    .footer-logo {
        font-size: 2.5em;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .social-btn {
        display: block;
        margin: 10px auto;
        max-width: 300px;
    }
}

@media (max-width: 480px) {

    /* Hero - Small Mobile */
    .hero h1 {
        font-size: 2.2em;
    }

    .hero-logo {
        width: 150px;
    }

    .hero-tagline {
        font-size: 1.2em;
    }

    .hero-cta-dual .cta-text {
        font-size: 1.1em;
    }

    .navbar-logo {
        font-size: 1.6em;
    }

    .navbar-logo-img {
        height: 35px;
    }

    .section-title {
        font-size: 1.8em;
    }

    .que-creemos-text h2 {
        font-size: 1.8em;
    }

    /* Cards - Small Mobile */
    .service-card,
    .contact-card {
        padding: 30px 20px;
    }

    .service-card h3 {
        font-size: 1.3em;
    }

    /* Proceso - Small Mobile */
    .proceso-grid {
        grid-template-columns: 1fr;
    }

    .proceso-step {
        padding: 25px 15px;
    }

    .proceso-number {
        font-size: 2.2em;
    }

    /* Coaches - Small Mobile */
    .coach-card {
        padding: 30px 20px;
    }

    .coach-photo {
        width: 130px;
        height: 130px;
        font-size: 3em;
    }

    .coach-card h3 {
        font-size: 1.4em;
    }

    /* Horarios - Small Mobile */
    .horario-card {
        padding: 30px 20px;
    }

    .schedule-block {
        padding: 15px;
    }

    .horario-note {
        padding: 12px;
    }

    /* CTA Section - Small Mobile */
    .cta-section h2 {
        font-size: 2em;
    }

    .cta-section .btn-primary {
        font-size: 1.1em;
        padding: 16px 40px;
    }

    .cta-final-title {
        font-size: 2em;
    }

    .footer-logo-img {
        width: 100px;
    }

}