/* ================================
   VARIABLES GENERALES
================================ */
:root {

    /* ================================
   TIPOGRAFÍA
================================ */

--font-title: "Oswald", sans-serif;
--font-body: "Nunito", sans-serif;
/* ================================
   COLORES PRINCIPALES
================================ */

/* Coral principal */
--color-primary: #F05A67;

/* Coral oscuro para hover */
--color-primary-dark: #D94856;

/* Coral muy suave */
--color-primary-soft: #FDE8EA;


/* ================================
   COLOR SECUNDARIO
================================ */

/* Azul grisáceo elegante */
--color-secondary: #607D8B;

--color-secondary-dark: #455A64;

--color-secondary-soft: #E9F0F3;

/* ================================
   COLORES COMPLEMENTARIOS
================================ */

/* Verde petróleo */
--color-petrol: #174C4C;

/* Verde petróleo oscuro */
--color-petrol-dark: #103A3A;

/* Verde salvia claro */
--color-sage: #DDE8DD;

/* Verde salvia más suave */
--color-sage-soft: #EEF4EC;

/* Durazno */
--color-peach: #FFD3B8;

/* Durazno suave */
--color-peach-soft: #FFF0E6;

/* Rosa salmón */
--color-salmon: #F47A78;

/* Rosa salmón suave */
--color-salmon-soft: #F8A09A;

/* ================================
   FONDOS
================================ */

/* Crema cálido */
--color-background: #FFF8F3;

/* Blanco para tarjetas */
--color-surface: #FFFFFF;

/* Fondo rosado muy suave */
--color-background-soft: #FFF1F2;


/* ================================
   TEXTOS
================================ */

--color-text: #2F2A2B;

--color-text-soft: #70676A;


/* ================================
   BORDES Y SOMBRAS
================================ */

--color-border: rgba(47, 42, 43, 0.12);

--shadow-soft: 0 18px 45px rgba(47, 42, 43, 0.10);

}

/* ================================
   REINICIO GENERAL
================================ */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;

    background-color: var(--color-background);
    color: var(--color-text);

    font-family: var(--font-body);
    line-height: 1.6;

    -webkit-font-smoothing: antialiased;
}

/* ================================
   TÍTULOS
================================ */

h1,
h2,
h3 {
    font-family: var(--font-title);
    font-weight: 700;
}

body.menu-open {
    overflow: hidden;
}

body.menu-open .floating-whatsapp {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

body.menu-open .floating-top-button {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

img {
    display: block;
    width: 100%;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    border: 0;
}

.container {
    width: calc(100% - 40px);
    max-width: var(--container-width);

    margin-left: auto;
    margin-right: auto;
}


/* ================================
   HEADER
================================ */


.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background-color: var(--color-background);

    border-bottom: 1px solid var(--color-border);

    backdrop-filter: blur(14px);
}


/* ================================
   NAVBAR
================================ */

.navbar {
    min-height: 72px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: relative;
}


/* ================================
   LOGO
================================ */

.navbar-left {
    display: flex;
    align-items: center;

    min-width: 0;
}

.brand {
    display: flex;
    align-items: center;

    flex-shrink: 0;
}

.brand-logo {
    width: auto;
    height: 80px;

    display: block;

    object-fit: contain;
}


/* ================================
   REDES SOCIALES DE ESCRITORIO
================================ */

.desktop-social-links {
    display: none;
}


/* ================================
   BOTÓN HAMBURGUESA
================================ */

.menu-button {
    width: 44px;
    height: 44px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;

    flex-shrink: 0;

    padding: 0;

    background-color: transparent;

    cursor: pointer;
}

.menu-button span {
    width: 24px;
    height: 2px;

    display: block;

    background-color: var(--color-text);
    border-radius: 100px;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}


/* Animación hamburguesa → X */

.menu-button.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-button.active span:nth-child(2) {
    opacity: 0;
}

.menu-button.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* ================================
   MENÚ MÓVIL
================================ */

.nav-menu {
    position: absolute;
    top: calc(100% + 1px);
    left: -20px;
    right: -20px;

    display: none;
    flex-direction: column;
    gap: 4px;

    padding: 20px;

    background-color: var(--color-surface);
    border-bottom: 1px solid var(--color-border);

    box-shadow: var(--shadow-soft);
}


/* Se activa desde JavaScript */

.nav-menu.open {
    display: flex;
}


.nav-menu > a {
    padding: 13px 10px;

    color: var(--color-text-soft);

    font-weight: 600;
}


.nav-menu > a:hover {
    color: var(--color-primary);
}


.nav-menu .nav-button {
    margin-top: 8px;

    display: flex;
    justify-content: center;

    border-radius: 999px;

    background-color: var(--color-primary);
    color: white;
}


/* ================================
   REDES SOCIALES DENTRO DEL MENÚ
================================ */

.mobile-social-links {
    margin-top: 14px;
    padding-top: 18px;

    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;

    border-top: 1px solid var(--color-border);
}


.mobile-social-links a {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border: 1px solid var(--color-border);
    border-radius: 50%;

    background-color: var(--color-surface);
    color: var(--color-text-soft);

    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}


.mobile-social-links svg {
    width: 18px;
    height: 18px;

    fill: currentColor;
}


.mobile-social-links a:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: white;

    transform: translateY(-2px);
}


/* ================================
   ESTILO GENERAL ICONOS SOCIALES
================================ */

.social-links {
    align-items: center;
    gap: 10px;
}


.social-links a {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border: 1px solid var(--color-border);
    border-radius: 50%;

    background-color: var(--color-surface);
    color: var(--color-text-soft);

    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}


.social-links svg {
    width: 18px;
    height: 18px;

    fill: currentColor;
}


.social-links a:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: white;

    transform: translateY(-2px);
}


/* ================================
   HERO
================================ */

.hero {
    padding: 25px 0 72px;

    overflow: hidden;
}

.hero-container {
    display: grid;
    gap: 44px;

}

.hero-content {
    width: 100%;
    max-width: 620px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-label {

    max-width: 100%;

    display: inline-flex;
    align-items: center;

    padding: 8px 14px;

    border-radius: 999px;

    background-color: rgba(240, 79, 95, 0.1);
    color: var(--color-primary-dark);

    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.4;
}

.hero h1 {
    width: 100%;
    max-width: 620px;

    margin-top: 20px;

    font-family: var(--font-title);
    font-size: clamp(3.7rem, 14vw, 4.8rem);
    font-weight: 700;

    line-height: 0.98;
    letter-spacing: -0.04em;

    color: var(--color-petrol);
}

.hero h1 span {
    display: block;

    color: var(--color-primary);
}

.hero-description {
    width: 100%;
    max-width: 520px;

    margin-top: 22px;

    color: var(--color-text-soft);

    font-size: 1rem;
    line-height: 1.7;
}

.hero-actions {
    width: 100%;

    margin-top: 30px;

    display: flex;
    flex-direction: column;
    gap: 12px;
}

.button {
    width: 100%;
    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 13px 22px;

    border: 1px solid transparent;
    border-radius: 999px;

    font-weight: 700;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background-color: var(--color-primary);
    color: white;
}

.button-primary:hover {
    background-color: var(--color-primary-dark);
}

.button-secondary {
    background-color: var(--color-petrol);

    border-color: var(--color-petrol);

    color: #ffffff;
}

.button-secondary:hover {
    background-color: var(--color-petrol-dark);

    border-color: var(--color-petrol-dark);

    color: #ffffff;
}

.hero-features {
    margin-top: 26px;

    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;

    color: var(--color-text-soft);

    font-size: 0.87rem;
    font-weight: 600;
}

.hero-image-wrapper {
    position: relative;

    display: flex;
    justify-content: center;
    align-items: flex-end;

    min-height: 520px;

    padding: 20px 10px 0;

    isolation: isolate;

    background: transparent;

    overflow: visible;
}

.hero-dots {
    position: absolute;

    width: 95px;
    height: 95px;

    right: 2%;
    top: 28%;

    z-index: 2;

    background-image:
        radial-gradient(
            circle,
            var(--color-petrol) 2.5px,
            transparent 2.5px
        );

    background-size: 18px 18px;

    opacity: 0.9;
}

.hero-dots {
    display: none !important;
}

.hero-image-wrapper::before {
    content: "";

    position: absolute;

    width: 72%;
    height: 76%;

    right: 6%;
    bottom: 6%;

    background-color: var(--color-primary);

    border-radius:
        48% 52% 44% 56%
        / 56% 42% 58% 44%;

    transform: rotate(-5deg);

    z-index: 1;
}

.hero-image-wrapper::before,
.hero-image-wrapper::after {
    display: none;
}
.hero-image {
    position: relative;

    width: auto;
    max-width: 88%;

    height: 540px;

    margin: 0 auto;

    display: block;

    object-fit: contain;

    background: transparent;

    border-radius: 0;
    box-shadow: none;

    z-index: 3;

    transform: translateY(20px);
}

.hero-card {
    position: absolute;
    right: 18px;
    bottom: 0;

    min-width: 190px;

    padding: 17px 20px;

    display: flex;
    flex-direction: column;

    border: 1px solid var(--color-border);
    border-radius: 18px;

    background-color: var(--color-surface);

    box-shadow: var(--shadow-soft);
}

.hero-card strong {
    font-size: 0.95rem;
}

.hero-card span {
    margin-top: 2px;

    color: var(--color-text-soft);

    font-size: 0.8rem;
}

/* ================================
   ENCABEZADOS DE SECCIÓN
================================ */

.section-heading {
    max-width: 620px;

    margin-bottom: 34px;
}

.section-label {
    display: inline-flex;

    padding: 7px 13px;

    border-radius: 999px;

    background-color: rgba(240, 79, 95, 0.1);
    color: var(--color-primary-dark);

    font-size: 0.78rem;
    font-weight: 700;
}

.section-heading h2 {
    margin-top: 16px;

    font-family: var(--font-title);
    font-size: clamp(2.3rem, 11vw, 4rem);
    line-height: 1.05;
    letter-spacing: -0.035em;
}

.section-heading p {
    margin-top: 16px;

    max-width: 520px;

    color: var(--color-text-soft);

    font-size: 1rem;
    line-height: 1.7;
}


/* ================================
   RITMOS
================================ */

.rhythms-section {
    padding: 50px 0;

    background-color: var(--color-surface);
}

.rhythms-grid {
    display: grid;
    gap: 16px;
}

.rhythm-card {
    min-height: 280px;

    padding: 24px;

    display: flex;
    flex-direction: column;

    border: 1px solid var(--color-border);
    border-radius: 24px;

    background-color: var(--color-background);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.rhythm-card:nth-child(1) {
    background-color: var(--color-primary-soft);
}

.rhythm-card:nth-child(2) {
    background-color: var(--color-peach-soft);
}

.rhythm-card:nth-child(3) {
    background-color: var(--color-sage-soft);
}

.rhythm-card:nth-child(4) {
    background-color: var(--color-primary-soft);
}

.rhythm-card:hover {
    transform: translateY(-5px);

    border-color: rgba(240, 79, 95, 0.35);

    box-shadow: var(--shadow-soft);
}

.rhythm-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.rhythm-icon {
    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    border-radius: 16px;

    background-color: var(--color-primary-soft);
    color: var(--color-primary);

    font-size: 1.35rem;
}

.rhythm-card:nth-child(2) .rhythm-icon,
.rhythm-card:nth-child(3) .rhythm-icon {
    background-color: var(--color-sage);
    color: var(--color-petrol);
}

.rhythm-icon svg {
    width: 28px;
    height: 28px;

    display: block;
}


.rhythm-level {
    color: var(--color-text-soft);

    font-size: 0.72rem;
    font-weight: 700;

    text-align: right;
}

.rhythm-card h3 {
    margin-top: 28px;

    font-family: var(--font-title);
    font-size: 2rem;
    line-height: 1;
}

.rhythm-card p {
    margin-top: 14px;

    color: var(--color-text-soft);

    font-size: 0.94rem;
    line-height: 1.65;
}

.rhythm-card a {
    margin-top: auto;
    padding-top: 22px;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--color-primary-dark);

    font-size: 0.9rem;
    font-weight: 700;
}

.rhythm-card a span {
    transition: transform 0.2s ease;
}

.rhythm-card a:hover span {
    transform: translateX(4px);
}

.rhythms-footer {
    margin-top: 50px;

    padding: 22px;

    display: flex;
    flex-direction: column;
    gap: 8px;

    border-radius: 20px;

    background-color: var(--color-petrol);
    color: white;
}

.rhythms-footer p {
    font-weight: 700;
}

.rhythms-footer a {
    color: var(--color-peach);

    font-size: 0.9rem;
    font-weight: 700;
}


/* ================================
   MODALIDADES DE CLASE
================================ */

.classes-section {
    padding: 84px 0;

    background-color: var(--color-surface);
}

.classes-grid {
    display: grid;
    gap: 16px;
}

.class-card {
    min-height: 390px;

    padding: 28px;

    display: flex;
    flex-direction: column;

    border: 1px solid var(--color-border);
    border-radius: 26px;

    background-color: var(--color-surface);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.class-card:nth-child(1) {
    background-color: var(--color-primary);
}

.class-card:nth-child(2) {
    background-color: var(--color-sage-soft);
}

.class-card:nth-child(3) {
    background-color: var(--color-peach-soft);
}

.class-card:nth-child(4) {
    background-color: var(--color-petrol);
}

.class-card:hover {
    transform: translateY(-5px);

    border-color: rgba(240, 79, 95, 0.35);

    box-shadow: var(--shadow-soft);
}

.class-card-featured {
    background-color: var(--color-primary);
    color: white;

    border-color: transparent;
}

.class-card-online {
    background-color: #111111;
    color: white;
    border-color: transparent;
}

.class-card:not(.class-card-featured):not(.class-card-online):nth-child(2) {
    background-color: var(--color-sage-soft);
}

.class-card:not(.class-card-featured):not(.class-card-online):nth-child(3) {
    background-color: var(--color-peach-soft);
}

.class-card-header {
    min-height: 34px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 16px;
}

.class-number {
    font-family: var(--font-title);
    font-size: 1.15rem;
    font-weight: 700;

    opacity: 0.65;
}

.class-badge {
    padding: 6px 10px;

    border-radius: 999px;

    background-color: white;
    color: var(--color-primary-dark);

    font-size: 0.68rem;
    font-weight: 700;
}

.class-badge-dark {
    background-color: rgba(255, 255, 255, 0.12);
    color: white;
}

.class-card h3 {
    margin-top: 12px;

    font-family: var(--font-title);
    font-size: 1.45rem;
    line-height: 1.05;
}

.class-card > p {
    margin-top: 16px;

    color: var(--color-text-soft);

    font-size: 0.94rem;
    line-height: 1.55;
}

.class-card-featured > p,
.class-card-online > p {
    color: rgba(255, 255, 255, 0.8);
}

.class-benefits {
    margin-top: 24px;

    display: grid;
    gap: 8px;

    list-style: none;
}

.class-benefits li {
    position: relative;

    padding-left: 24px;

    color: var(--color-text-soft);

    font-size: 0.88rem;
    font-weight: 600;
}

.class-benefits li::before {
    content: "✓";

    position: absolute;
    left: 0;

    color: var(--color-primary);
    font-weight: 700;
}

.class-card-featured .class-benefits li,
.class-card-online .class-benefits li {
    color: rgba(255, 255, 255, 0.85);
}

.class-card-featured .class-benefits li::before {
    color: white;
}

.class-card-online .class-benefits li::before {
    color: var(--color-secondary);
}

.class-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: auto;
    padding-top: 20px;

    background: none;
    border: none;
    border-radius: 0;

    color: var(--color-primary);

    font-size: 0.95rem;
    font-weight: 700;

    text-decoration: none;
}

.class-card-featured .class-link {
    color: white;
}

.class-card-online .class-link {
    color: var(--color-secondary);
}

.class-link span {
    transition: transform 0.2s ease;
}

.class-link:hover span {
    transform: translateX(4px);
}
/* ================================
   CONTACTO Y FORMULARIO
================================ */

.contact-section {
    padding: 84px 0;

    background-color: var(--color-surface);
}

.contact-heading {
    max-width: 620px;

    margin-bottom: 42px;
}

.contact-heading h2 {
    margin-top: 16px;

    font-family: var(--font-title);
    font-size: 2.2rem;
    line-height: 1.05;
    letter-spacing: -0.035em;
}

.contact-heading p {
    margin-top: 16px;

    max-width: 520px;

    color: var(--color-text-soft);

    line-height: 1.7;
}

.contact-content {
    display: grid;
    gap: 40px;
}

.contact-information {
    display: grid;
    gap: 20px;
}

.contact-benefit {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
}

.contact-benefit > span {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 14px;

    background-color: rgba(240, 79, 95, 0.1);
    color: var(--color-primary-dark);

    font-size: 0.76rem;
    font-weight: 700;
}

.contact-benefit strong {
    font-size: 0.95rem;
}

.contact-benefit p {
    margin-top: 3px;

    color: var(--color-text-soft);

    font-size: 0.86rem;
    line-height: 1.6;
}

.contact-form {
    padding: 24px;

    border: 1px solid var(--color-border);
    border-radius: 28px;

    background-color: var(--color-background);

    box-shadow: var(--shadow-soft);
}

.form-row {
    display: grid;
    gap: 0;
}

.form-field {
    margin-bottom: 18px;

    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-field label {
    font-size: 0.84rem;
    font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;

    padding: 14px 15px;

    border: 1px solid var(--color-border);
    border-radius: 14px;

    background-color: var(--color-surface);
    color: var(--color-text);

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.form-field textarea {
    min-height: 130px;

    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--color-primary);

    box-shadow: 0 0 0 4px rgba(240, 79, 95, 0.12);
}

.consent-field {
    margin-top: 4px;

    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 10px;
    align-items: start;

    color: var(--color-text-soft);

    font-size: 0.78rem;
    line-height: 1.55;

    cursor: pointer;
}

.consent-field input {
    width: 18px;
    height: 18px;

    margin-top: 2px;

    accent-color: var(--color-primary);
}

.form-submit {
    width: 100%;
    min-height: 54px;

    margin-top: 24px;
    padding: 14px 22px;

    border: 0;
    border-radius: 999px;

    background-color: var(--color-primary);
    color: white;

    font-weight: 700;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.form-submit:hover {
    background-color: var(--color-primary-dark);

    transform: translateY(-2px);
}

.form-message {
    min-height: 24px;

    margin-top: 14px;

    font-size: 0.86rem;
    font-weight: 700;
    text-align: center;
}

.form-message.success {
    color: #1f7a45;
}

.form-message.error {
    color: #b42318;
}


/* ================================
   SECCIONES TEMPORALES
================================ */

.temporary-section {
    min-height: 380px;

    padding: 80px 0;

    display: flex;
    align-items: center;

    border-top: 1px solid var(--color-border);
}

.temporary-section h2 {
    font-family: var(--font-title);
    font-size: 2.5rem;
}

.temporary-section p {
    margin-top: 10px;

    color: var(--color-text-soft);
}

/* =========================================
   VIDEO DE RITMOS
========================================= */

.rhythms-video {
    width: 100%;
    max-width: 900px;

    margin: 50px auto 0;

    overflow: hidden;

    border-radius: 28px;

    background-color: #111111;

    box-shadow: var(--shadow-soft);
}


.dance-video {
    width: 100%;
    height: auto;

    display: block;
}

/* =========================================
   PASOS PARA RESERVAR
========================================= */

.booking-steps-section {
    padding: 15px 0;

    background-color: var(--color-background);
}


.booking-steps-heading {
    max-width: 720px;

    margin: 0 auto 30px;

    text-align: center;
}


.booking-steps-heading h2 {
    margin-top: 14px;

    font-family: var(--font-title);

    font-size: 2.2rem;
    line-height: 1.05;

    color: var(--color-text);
}


.booking-steps-heading h2 span {
    display: block;

    color: var(--color-primary);
}


.booking-steps-heading p {
    max-width: 560px;

    margin: 12px auto 0;

    color: var(--color-text-soft);

    line-height: 1.6;

    font-size: 0.88rem;
}


.booking-steps-grid {
    display: grid;

    grid-template-columns: 1fr;

    gap: 18px;
}


.booking-step {
    position: relative;

    padding: 20px 18px;

    text-align: center;

    border: 1px solid var(--color-border);
    border-radius: 20px;

    background-color: var(--color-surface);
}


.booking-step-number {
    position: absolute;

    top: 14px;
    left: 14px;

    width: 25px;
    height: 25px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background-color: var(--color-primary);

    color: white;

    font-size: 0.7rem;
    font-weight: 700;
}


.booking-step-icon {
    width: 56px;
    height: 56px;

    margin: 0 auto 14px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background-color: var(--color-primary-soft);

    font-size: 2rem;
}

.booking-step-icon svg {
    width: 27px;
    height: 27px;

    fill: none;

    stroke: var(--color-primary);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.booking-step h3 {
    margin-bottom: 10px;

    color: var(--color-text);

    font-size: 0.95rem;
}


.booking-step p {
    color: var(--color-text-soft);

    font-size: 0.8rem;
    line-height: 1.45;
}


.booking-steps-footer {
    margin-top: 45px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;

    text-align: center;
}


.booking-steps-footer p {
    max-width: 650px;

    color: var(--color-text-soft);

    line-height: 1.7;
}
/* =========================================
   TESTIMONIOS
========================================= */

.testimonials-section {
    padding: 15px 0;

    background-color: var(--color-salmon);
}

/* ENCABEZADO */

.testimonials-heading {
    max-width: 700px;

    margin: 0 auto 45px;

    text-align: center;
}

.testimonials-heading .section-label {
    background-color: rgba(255, 248, 243, 0.18);

    color: var(--color-background);
}


.testimonials-heading h2 {
    margin-top: 14px;

    font-family: var(--font-title);

    font-size: 2.4rem;
    line-height: 1.05;

    color: var(--color-background);
}


.testimonials-heading p {
    max-width: 560px;

    margin: 18px auto 0;

    color: var(--color-background);

    line-height: 1.7;
}

/* FLECHAS DEL CARRUSEL OCULTAS */

.testimonials-controls {
    display: none !important;
}

.testimonial-arrow {
    display: none !important;
}
/* CARRUSEL */

.testimonials-slider {
    display: flex;
    gap: 20px;

    overflow-x: auto;
    overflow-y: hidden;

    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;

    -webkit-overflow-scrolling: touch;

    padding-bottom: 16px;

    scrollbar-width: none;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}



/* TARJETA */

.testimonial-card {
    flex: 0 0 78%;
    scroll-snap-align: start;

    padding: 20px;

    border: 1px solid var(--color-border);
    border-radius: 22px;

   background-color: var(--color-background);

    box-shadow: var(--shadow-soft);
}

/* ESTRELLAS */

.testimonial-stars {
    margin-bottom: 10px;

    color: var(--color-primary);

    font-size: 0.85rem;
    letter-spacing: 2px;
}

/* TEXTO DEL TESTIMONIO */

.testimonial-text {
    color: var(--color-text);

    font-size: 0.92rem;
    line-height: 1.5;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;

    overflow: hidden;
}

.testimonial-read-more {
    margin-top: 8px;
    padding: 0;

    background: transparent;
    border: 0;

    color: var(--color-primary);

    font-size: 0.82rem;
    font-weight: 700;

    cursor: pointer;
}

.testimonial-read-more:hover {
    color: var(--color-primary-dark);
}

.testimonial-text.expanded {
    display: block;

    overflow: visible;
}


/* PERSONA */

.testimonial-person {
    margin-top: 16px;

    display: flex;
    align-items: center;
    gap: 10px;
}


/* CÍRCULO CON INICIALES */

.testimonial-avatar {
    width: 40px;
    height: 40px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background-color: var(--color-primary-soft);

    color: var(--color-primary-dark);

    font-size: 0.82rem;
    font-weight: 700;
}


/* NOMBRE */

.testimonial-person h3 {
    margin-bottom: 2px;

    color: var(--color-text);

    font-size: 0.9rem;
}


/* TIPO DE CLASE */

.testimonial-person span {
    color: var(--color-text-soft);

    font-size: 0.76rem;
}
    
.testimonials-slider::-webkit-scrollbar {
    display: none;

}

/* =========================================
   SALIDAS DE PRÁCTICA
========================================= */

.practice-section {
    padding: 85px 0;

    background-color: var(--color-background);
}


/* ENCABEZADO */

.practice-heading {
    max-width: 760px;

    margin-bottom: 50px;
}


.practice-heading h2 {
    margin-top: 14px;

    font-family: var(--font-title);

    font-size: 2.8rem;
    line-height: 1.02;

    color: var(--color-text);
}


.practice-heading h2 span {
    display: block;

    color: var(--color-primary);
}


.practice-heading p {
    max-width: 650px;

    margin-top: 20px;

    color: var(--color-text-soft);

    line-height: 1.7;
}

/* GALERÍA DE FOTOS */

.practice-page-gallery {
    display: grid;
    grid-template-columns: 1fr;

    gap: 18px;

    margin-bottom: 45px;
}


.practice-page-photo {
    width: 100%;

    overflow: hidden;

    border-radius: 26px;

    background-color: var(--color-surface);

    box-shadow: var(--shadow-soft);
}


.practice-page-photo img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* INFORMACIÓN */

.practice-info {
    display: grid;
    grid-template-columns: 1fr;

    gap: 16px;

    margin-bottom: 42px;
}


.practice-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;

    padding: 20px;

    border: 1px solid var(--color-border);
    border-radius: 22px;

    background-color: var(--color-surface);
}


.practice-info-item:nth-child(1) > span {
    background-color: var(--color-primary);
    color: white;
}

.practice-info-item:nth-child(2) > span {
    background-color: var(--color-petrol);
    color: white;
}

.practice-info-item:nth-child(3) > span {
    background-color: var(--color-salmon);
    color: white;
}


.practice-info-item > span {
    width: 38px;
    height: 38px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background-color: var(--color-primary-soft);

    color: var(--color-primary-dark);

    font-size: 0.8rem;
    font-weight: 700;
}


.practice-info-item strong {
    color: var(--color-text);
}


.practice-info-item p {
    margin-top: 7px;

    color: var(--color-text-soft);

    font-size: 0.92rem;
    line-height: 1.6;
}


/* GALERÍA */

.practice-gallery {
    display: grid;

    grid-template-columns: 1fr;

    gap: 16px;
}


.practice-media {
    width: 100%;

    overflow: hidden;

    border-radius: 26px;

    background-color: #111111;

    box-shadow: var(--shadow-soft);
}


.practice-media img,
.practice-media video {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* ALTURA PARA MÓVIL */

.practice-media {
    min-height: 260px;
}


.practice-media video {
    min-height: 260px;
}


/* MENSAJE FINAL */

.practice-footer {
    margin-top: 35px;

    padding: 26px;

    display: flex;
    flex-direction: column;
    gap: 24px;

    border: 1px solid var(--color-border);
    border-radius: 26px;

    background-color: var(--color-primary-soft);
}


.practice-footer span {
    display: block;

    margin-bottom: 5px;

    color: var(--color-primary-dark);

    font-size: 0.85rem;
    font-weight: 600;
}


.practice-footer strong {
    color: var(--color-text);

    font-family: var(--font-title);
    font-size: 1.6rem;
}

/* =========================================
   PÁGINA SALIDAS DE PRÁCTICA
========================================= */

.practice-page {
    padding: 60px 0 80px;

    background-color: var(--color-background);
}


.practice-page-heading {
    max-width: 760px;

    margin-bottom: 45px;
}


.practice-page-heading h1 {
    margin-top: 14px;

    font-family: var(--font-title);

    font-size: 3rem;
    line-height: 1;

    color: var(--color-petrol);
}


.practice-page-heading h1 span {
    display: block;

    color: var(--color-petrol-dark);
}


.practice-page-heading p {
    max-width: 650px;

    margin-top: 20px;

    color: var(--color-text-soft);

    line-height: 1.7;
}


/* GRID DE VIDEOS */

.practice-videos-grid {
    display: grid;

    grid-template-columns: 1fr;

    gap: 24px;
}


/* TARJETA */

.practice-video-card {
    overflow: hidden;

    border: 1px solid var(--color-border);
    border-radius: 26px;

    background-color: var(--color-surface);

    box-shadow: var(--shadow-soft);
}


.practice-video-card video {
    width: 100%;
    height: auto;

    display: block;

    background-color: #111111;
}


/* INFORMACIÓN DEL VIDEO */

.practice-video-info {
    padding: 22px;
}


.practice-video-info > span {
    color: var(--color-primary);

    font-size: 0.8rem;
    font-weight: 700;
}


.practice-video-info h2 {
    margin-top: 8px;

    color: var(--color-text);

    font-size: 1.3rem;
}


.practice-video-info p {
    margin-top: 10px;

    color: var(--color-text-soft);

    font-size: 0.92rem;
    line-height: 1.6;
}


.practice-page-footer {
    margin-top: 45px;
}

/* =========================================
   VOLVER AL INICIO
========================================= */

.back-to-top {
    margin-top: 35px;

    text-align: center;
}


.back-to-top a {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: var(--color-primary);

    font-size: 0.9rem;
    font-weight: 700;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}


.back-to-top a:hover {
    color: var(--color-primary-dark);

    transform: translateY(-2px);
}

    /* =========================================
    MENÚ EXTRA
    ========================================= */

    .desktop-more-menu {
        display: none;
    }

    .mobile-extra-link {
        display: block;
    }

    /* =========================================
   PREVIEW DE CLASES
========================================= */

.classes-preview {
    padding: 65px 0;

    background-color: var(--color-background);
}


.classes-preview-content {
    max-width: 700px;
}


.classes-preview-content h2 {
    margin-top: 14px;

    font-family: var(--font-title);

    font-size: 2.7rem;
    line-height: 1.02;

    color: var(--color-text);
}


.classes-preview-content h2 span {
    display: block;

    color: var(--color-primary);
}


.classes-preview-content p {
    max-width: 620px;

    margin: 20px 0 28px;

    color: var(--color-text-soft);

    line-height: 1.7;
}

/* =========================================
   PÁGINA CLASES
========================================= */

.classes-page-intro {
    padding: 30px 0 5px;

    background-color: var(--color-background);
}


.classes-page-intro h1 {
    max-width: 720px;

    margin-top: 14px;

    font-family: var(--font-title);

    font-size: 3rem;
    line-height: 1;

    color: var(--color-petrol);
}


.classes-page-intro h1 span {
    display: block;

    color: var(--color-primary);
}


.classes-page-intro p {
    max-width: 620px;

    margin: 20px 0 15px;

    color: var(--color-text-soft);

    line-height: 1.7;
}

.back-to-home {
    margin-top: 45px;
    text-align: center;
}

/* =========================================
   DISTRIBUCIÓN CLASES + VIDEO
========================================= */

.classes-layout {
    display: grid;
    gap: 30px;
}

.classes-layout .classes-grid {
    grid-template-columns: 1fr;
}


.classes-video-wrapper {
    width: 100%;

    overflow: hidden;

    border-radius: 26px;

    background-color: #111111;

    box-shadow: var(--shadow-soft);
}


.classes-video {
    width: 100%;
    height: auto;

    display: block;
}

/* ================================
   CTA SALIDAS DE PRÁCTICA
================================ */

.practice-cta {
    max-width: 560px;

    margin: 50px auto 30px;
    padding: 30px 28px;

    text-align: center;

    border-radius: 26px;

    background-color: var(--color-primary);
}


.practice-cta h2 {
    margin: 0;

    font-family: var(--font-title);
    font-size: 1.8rem;
    line-height: 1.05;

    color: #ffffff;
}


.practice-cta p {
    max-width: 440px;

    margin: 12px auto 0;

    color: #ffffff;

    font-size: 0.9rem;
    line-height: 1.5;
}


.practice-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    margin-top: 20px;
    padding: 11px 19px;

    border-radius: 999px;

    background-color: #ffffff;
    color: var(--color-primary);

    font-size: 0.9rem;
    font-weight: 700;

    text-decoration: none;

    transition: transform 0.2s ease;
}


.practice-cta-button:hover {
    transform: translateY(-2px);
}

/* =========================================
   MOSAICO SALIDAS DE PRÁCTICA
========================================= */

.practice-mosaic {
    display: grid;

    grid-template-columns: 1fr;

    gap: 16px;
}


.practice-mosaic-item {
    overflow: hidden;

    border-radius: 24px;

    background-color: var(--color-surface);

    box-shadow: var(--shadow-soft);
}


.practice-mosaic-item img,
.practice-mosaic-item video {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

/* ================================
   INTRO PÁGINA DE CLASES
================================ */

.classes-intro {
    display: block;
}

.classes-intro-image {
    display: none;
}

/* =========================================
   CTA SALIDAS DE PRÁCTICA
========================================= */

.practice-invite {
    padding: 35px 0;
}

.practice-invite-box {
    width: 90%;
    max-width: 950px;

    margin: 0 auto;
    padding: 22px 28px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    background: transparent;

    border: 2px solid var(--color-peach);
    border-radius: 32px;

    box-shadow: none;
}

.practice-invite-box p {
    color: #185654;

    font-size: 1.35rem;
    font-weight: 700;

    transition: color 0.35s ease;
}

.practice-invite-button {
    background: transparent;

    color: #F47C78;

    border: 2px solid var(--color-peach);

    border-radius: 999px;
}

.practice-invite-box:hover {
    background-color: #F47C78;

    border-color: #FF8D89;

    box-shadow:
        0 0 10px rgba(244, 124, 120, 0.55),
        0 0 25px rgba(244, 124, 120, 0.35),
        0 0 45px rgba(244, 124, 120, 0.18);

    transform: translateY(-3px);
}

.practice-invite-box:hover .practice-invite-text {
    color: #FFF8F3;
}

.practice-invite-box:hover .practice-invite-button {
    background-color: #FFF8F3;

    color: #185654;
    border-color: #FFF8F3;

    box-shadow:
        0 0 10px rgba(255, 248, 243, 0.65),
        0 0 22px rgba(255, 248, 243, 0.30);
}

.practice-invite-box:hover .practice-invite-button:hover {
    transform: scale(1.05);

    background-color: #185654;

    color: #FFF8F3;

    border-color: #185654;

    box-shadow:
        0 0 12px rgba(24, 86, 84, 0.35),
        0 0 24px rgba(24, 86, 84, 0.20);
}

.practice-invite-button:hover {
    transform: translateY(-3px);

    background-color: #124947;

    box-shadow: 0 12px 26px rgba(24, 86, 84, 0.25);
}

.cta-arrow {
    display: inline-block;
    margin-left: 6px;

    transition: transform 0.25s ease;
}
.practice-invite-button:hover .cta-arrow {
    transform: translateX(5px);
}

.practice-invite-button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.desktop-more-button::before,
.desktop-more-button::after {
    content: none !important;
    display: none !important;
}

.desktop-more-button span {
    display: none !important;
}

.floating-top-button {
    display: none;
}

/* =========================================
   PREGUNTAS FRECUENTES
========================================= */

.faq-section {
    padding: 70px 0;

    background-color: var(--color-background);
}


.faq-heading {
    max-width: 720px;

    margin: 0 auto 40px;

    text-align: center;
}


.faq-heading h2 {
    margin-top: 14px;

    font-family: var(--font-title);

    font-size: 2.8rem;
    line-height: 1.05;

    color: var(--color-petrol);
}


.faq-heading h2 span {
    display: block;

    color: var(--color-primary);
}


.faq-heading p {
    max-width: 560px;

    margin: 16px auto 0;

    color: var(--color-text-soft);

    font-size: 0.95rem;
    line-height: 1.6;
}


.faq-list {
    width: 100%;
    max-width: 850px;

    margin: 0 auto;

    display: grid;

    gap: 14px;
}


.faq-item {
    overflow: hidden;

    border: 1px solid var(--color-border);
    border-radius: 20px;

    background-color: var(--color-surface);
}


.faq-question {
    width: 100%;

    padding: 20px 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    background-color: transparent;

    color: var(--color-petrol);

    text-align: left;

    font-size: 1rem;
    font-weight: 700;

    cursor: pointer;
}


.faq-icon {
    width: 30px;
    height: 30px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background-color: var(--color-primary-soft);
    color: var(--color-primary);

    font-size: 1.15rem;
    font-weight: 700;

    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        color 0.25s ease;
}


.faq-answer {
    max-height: 0;

    overflow: hidden;

    transition:
        max-height 0.35s ease,
        padding 0.35s ease;
}


.faq-answer p {
    padding: 0 22px 20px;

    color: var(--color-text-soft);

    font-size: 0.9rem;
    line-height: 1.65;
}


.faq-item.open .faq-answer {
    max-height: 300px;
}


.faq-item.open .faq-icon {
    transform: rotate(45deg);

    background-color: var(--color-petrol);
    color: white;
}

/* =========================================
   BOTÓN FLOTANTE WHATSAPP
========================================= */

.floating-whatsapp {
    position: fixed;

    left: 20px;
    bottom: 24px;

    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background-color: #25D366;
    color: #ffffff;

    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.20);

    z-index: 9998;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.floating-whatsapp svg {
    width: 25px;
    height: 25px;

    fill: currentColor;
}

.floating-whatsapp:hover {
    transform: translateY(-3px) scale(1.05);

    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

/* =========================================
   CTA SALIDAS DE PRÁCTICA - SOLO CELULAR
========================================= */

.practice-mobile-cta {
    display: none;
}

@keyframes practiceButtonPulse {

    0% {
        transform: scale(1);

        box-shadow:
            0 8px 20px rgba(244, 124, 120, 0.28),
            0 0 18px rgba(244, 124, 120, 0.14);
    }

    50% {
        transform: scale(1.05);

        box-shadow:
            0 10px 25px rgba(244, 124, 120, 0.36),
            0 0 32px rgba(244, 124, 120, 0.30);
    }

    100% {
        transform: scale(1);

        box-shadow:
            0 8px 20px rgba(244, 124, 120, 0.28),
            0 0 18px rgba(244, 124, 120, 0.14);
    }
}

/* ================================
   AJUSTES SOLO CELULAR
================================ */

@media (max-width: 699px) {

   /* ================================
   INTRO PÁGINA CLASES - CELULAR
    ================================ */

    .classes-page-intro {
        padding: 20px 0 0px;
    }

    .classes-page-intro p {
        margin-top: 10px;
        margin-bottom: 5px;
    }
    .classes-section {
        padding-top: 20px;
        padding-bottom: 25px;
    }

    .classes-heading {
        margin-bottom: 5px;
    }

    .classes-intro {
        display: block;

        margin: 0;
        padding: 0;

        gap: 0;
    }

    .classes-intro-image {
        display: none;
    }

    .hero-container {
        gap: 5px;
    }


    /* ================================
    HERO IMAGEN - CELULAR
    ================================ */

    .hero-image-wrapper {
        position: relative;

        width: 100%;
        min-height: 440px;

        display: flex;
        justify-content: center;
        align-items: flex-end;

        padding: 0px 0 5px;
        margin-top: -80px;

        overflow: visible;

        isolation: isolate;
    }


   .hero-image-wrapper::before {
        content: "";

        position: absolute;

        width: 56%;
        height: 55%;

        right: 6%;
        bottom: 13%;

        background-color: var(--color-salmon);

        border-radius:
            48% 52% 44% 56%
            / 56% 42% 58% 44%;

        transform: rotate(-4deg);

        z-index: 1;
    }

   .hero-image-wrapper::after {
        content: "";

        position: absolute;

        width: 34%;
        height: 30%;

        left: 15%;
        bottom: 8%;

        background-color: var(--color-peach);

        border-radius:
            55% 45% 50% 50%
            / 60% 45% 55% 40%;

        transform: rotate(-7deg);

        z-index: 0;
    }

    .hero-dots {
        position: absolute;

        width: 68px;
        height: 68px;

        right: 2%;
        top: 30%;

        z-index: 2;

        background-image:
            radial-gradient(
                circle,
                var(--color-petrol) 2px,
                transparent 2px
            );

        background-size: 13px 13px;

        opacity: 0.9;
    }

    .hero-image {
        position: relative;

        width: auto;
        max-width: 95%;

        height: 440px;

        margin: 0 auto;

        display: block;

        object-fit: contain;
        object-position: center bottom;

        background: transparent;

        border-radius: 0;
        box-shadow: none;

        transform: translateY(-30px);

        z-index: 3;
    }

    .hero-card {
        right: 8%;
        bottom: -30px;

        min-width: 135px;

        padding: 10px 13px;

        border-radius: 15px;

        z-index: 4;
    }

    .hero-card strong {
        font-size: 0.78rem;
    }

    .hero-card span {
        font-size: 0.68rem;
    }

    /* ================================
    SALIDAS DE PRÁCTICA - CELULAR
    ================================ */
    .practice-page {
        padding-top: 15px;
    }


    /* BOTÓN VOLVER AL INICIO */

    .back-to-home {
        margin-top: 25px;
        text-align: left;
    }

    .back-to-home a {
        display: inline-flex;

        width: auto;
        min-width: 0;

        padding: 10px 16px;

        font-size: 0.85rem;
        line-height: 1.2;
    }

    .practice-page-footer {
        margin-top: 25px;
    }

    .practice-page-footer .button {
        width: auto;
        min-width: 0;

        padding: 9px 15px;

        font-size: 0.82rem;
        line-height: 1.2;
    }


    /* CTA SALIDAS DE PRÁCTICA - CELULAR */

    .practice-invite {
        padding: 25px 0;
    }

    .practice-invite-box {
        width: 86%;

        margin: 0 auto;

        padding: 18px 16px;

        flex-direction: column;

        gap: 14px;

        text-align: center;

        border-radius: 20px;
        

    }

    .practice-invite-box p {
        font-size: 1.15rem;
        line-height: 1.3;
    }

    .practice-invite-button {
        display: inline-flex;

        width: auto;

        padding: 9px 15px;

        font-size: 0.75rem;
        font-weight: 700;
    }
    /* RITMOS - CELULAR */

    .rhythm-card {
        width: 78%;

        min-height: 210px;

        margin-left: auto;
        margin-right: auto;

        padding: 18px;

        border-radius: 20px;
    }

    .rhythm-card h3 {
        margin-top: 18px;

        font-size: 1.5rem;
    }

    .rhythm-card p {
        margin-top: 10px;

        font-size: 0.82rem;
        line-height: 1.45;
    }

    .rhythm-card a {
        padding-top: 14px;

        font-size: 0.78rem;
    }

    .rhythm-level {
        font-size: 0.65rem;
    }

    .rhythm-icon {
        width: 40px;
        height: 40px;

        border-radius: 13px;
    }

    .rhythm-icon svg {
        width: 23px;
        height: 23px;
    }


    .rhythms-footer {
        width: 84%;
        max-width: 360px;

        margin: 35px auto 0;

        padding: 16px 20px;

        border-radius: 22px;
    }

    .rhythms-footer p {
        font-size: 0.88rem;
        line-height: 1.35;
    }

    .rhythms-footer a {
        font-size: 0.78rem;
        line-height: 1.35;
    }

    .desktop-more-menu {
        display: none;
    }

    .mobile-extra-link {
        display: block;
    }

    .back-to-top {
        margin-top: 20px;
        margin-bottom: 0px;
    }

    .booking-step {
        width: 80%;
        max-width: 330px;

        min-height: 260px;

        margin-left: auto;
        margin-right: auto;

        padding: 26px 20px;

        border-radius: 24px;
    }

    .booking-step h3 {
        font-size: 1.1rem;
    }

    .booking-step p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .booking-steps-grid {
        grid-template-columns: 1fr;

        gap: 18px;

        justify-items: center;
    }

    .booking-step-icon {
        margin-bottom: 20px;
    }

    .booking-step h3 {
        margin-bottom: 12px;
    }

    .booking-step p {
        max-width: 240px;

        margin-left: auto;
        margin-right: auto;

        font-size: 0.9rem;
        line-height: 1.5;
    }

    .class-card {
        width: 94%;
        min-height: auto;

        margin-left: auto;
        margin-right: auto;

        padding: 10px 25px;

        border-radius: 18px;
    }
    .class-card-header {
        margin-bottom: 14px;
    }

    .class-card h3 {
        margin-bottom: 8px;
        font-size: 1.35rem;
        border-radius: 22px;
    }

    .class-card > p {
        margin-bottom: 14px;

        font-size: 0.9rem;
        line-height: 1.5;
    }

    .class-benefits {
        margin-top: 14px;
        gap: 7px;
    }

    .class-benefits li {
        font-size: 0.88rem;
        line-height: 1.4;
    }

    .class-link {
        padding-top: 14px;

        font-size: 0.9rem;
    }

    .classes-grid {
        gap: 16px;

        margin-top: 10px;
        padding-top: 0;
    }

    .classes-layout {
        grid-template-columns: 1fr;
        gap: 12px;

        margin-top: 10px;
    }

    .classes-layout .classes-grid {
        grid-template-columns: 1fr;
    }

    .classes-video-wrapper {
        width: 82%;
        max-width: 280px;

        height: 400px;

        margin: 20px auto 0;

        overflow: hidden;

        border-radius: 22px;
    }

    .classes-video {
        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center;

        display: block;
    }

    .practice-cta {
        width: 82%;
        max-width: 300px;

        margin: 30px auto 20px;

        padding: 18px 16px;

        border-radius: 20px;
    }

    .practice-cta h2 {
        font-size: 1.55rem;
        line-height: 1.1;
    }

    .practice-cta p {
        margin-top: 12px;

        font-size: 0.85rem;
        line-height: 1.5;
    }

   .practice-cta-button {
        margin-top: 18px;
        padding: 11px 17px;

        font-size: 0.85rem;
    }

    .practice-video-card {
        max-width: 300px;

        margin-left: auto;
        margin-right: auto;
    }

    .practice-video-card video {
        width: 100%;
        height: 360px;

        object-fit: cover;
        object-position: center;
    }

    .practice-mosaic {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }


    .practice-mosaic-item {
        min-height: 0;
    }

    .practice-section {
        padding-top: 15px;
        padding-bottom: 30px;
    }


    /* FOTO GRANDE */

    .photo-large {
        grid-column: span 2;

        height: 220px;
    }


    /* FOTO PEQUEÑA */

    .photo-small {
        height: 150px;
    }


    /* FOTO ALTA */

    .photo-tall {
        height: 210px;
    }


    /* VIDEOS PEQUEÑOS */

    .video-small {
        height: 220px;
    }


    .video-small video {
        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center;
    }

    .testimonial-card {
        flex: 0 0 78%;
        padding: 20px;
        border-radius: 22px;
    }

    /* ================================
    FORMULARIO CONTACTO - CELULAR
    ================================ */

    .contact-form {
        width: 84%;
        max-width: 320px;

        margin-left: auto;
        margin-right: auto;

        padding: 20px;

        border-radius: 22px;
    }

    .contact-left {
        width: 84%;
        margin-left: auto;
        margin-right: auto;
    }

    .floating-top-button {
        position: fixed;

        right: 18px;
        bottom: 22px;

        width: 32px;
        height: 32px;

        display: flex;
        align-items: center;
        justify-content: center;

        border-radius: 50%;

        background-color: var(--color-petrol);
        color: var(--color-background);

        font-size: 1.4rem;
        font-weight: 600;

        text-decoration: none;

        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);

        z-index: 9999;
    }

    .floating-top-button.show {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;

        transform: translateY(0);
    }

    .hero-image-wrapper::before,
    .hero-image-wrapper::after {
        display: none !important;
    }

    /* ================================
   FAQ - CELULAR
    ================================ */

    .faq-section {
        padding: 45px 0;
    }


    .faq-heading {
        width: 88%;

        margin-bottom: 28px;
    }


    .faq-heading h2 {
        font-size: 2.3rem;
    }


    .faq-heading p {
        font-size: 0.86rem;
        line-height: 1.5;
    }


    .faq-list {
        width: 88%;
    }


    .faq-question {
        padding: 16px 17px;

        gap: 12px;

        font-size: 0.9rem;
        line-height: 1.35;
    }


    .faq-icon {
        width: 27px;
        height: 27px;

        font-size: 1rem;
    }


    .faq-answer p {
        padding: 0 17px 17px;

        font-size: 0.82rem;
        line-height: 1.55;
    }

    .floating-whatsapp {
        left: 14px;
        bottom: 18px;

        width: 42px;
        height: 42px;
    }

    .floating-whatsapp svg {
        width: 22px;
        height: 22px;
    }

    .button,
    .button-secondary {
        position: relative;
        z-index: 10;
        pointer-events: auto;
    }

    /* =========================================
       CTA ANIMADO SALIDAS DE PRÁCTICA
       SOLO CELULAR
    ========================================= */

    .practice-mobile-cta {
        display: flex;

        width: 100%;

        justify-content: center;
        align-items: center;

        padding: 28px 16px 38px;

        overflow: visible;
    }

    .practice-mobile-button {
        width: 64px;
        min-height: 64px;

        padding: 12px;

        display: flex;
        align-items: center;
        justify-content: center;

        gap: 0;

        border: 2px solid #F47C78;
        border-radius: 999px;

        background: transparent;

        color: #185654;

        text-decoration: none;

        overflow: hidden;

        opacity: 0;

        transform: scale(0.75) translateY(18px);

        box-shadow: none;

        transition:
            width 0.65s ease,
            min-height 0.65s ease,
            padding 0.65s ease,
            gap 0.5s ease,
            background-color 0.45s ease,
            color 0.45s ease,
            border-color 0.45s ease,
            box-shadow 0.45s ease,
            opacity 0.55s ease,
            transform 0.55s ease;
    }

    .practice-mobile-text {
        max-width: 0;

        overflow: hidden;

        opacity: 0;

        white-space: nowrap;

        font-size: 0.86rem;
        font-weight: 700;
        line-height: 1.35;

        text-align: center;

        transition:
            opacity 0.3s ease,
            max-width 0.6s ease;
    }

    .practice-mobile-arrow {
        flex-shrink: 0;

        font-size: 1.25rem;
        font-weight: 700;

        color: #F47C78;

        transition:
            color 0.4s ease,
            transform 0.4s ease;
    }


    .practice-mobile-cta.is-visible .practice-mobile-button {
        opacity: 1;

        transform: scale(1) translateY(0);

        box-shadow:
            0 6px 18px rgba(244, 124, 120, 0.14);
    }
    .practice-mobile-cta.phase-message .practice-mobile-button {
        width: min(88vw, 360px);

        min-height: 70px;

        padding: 15px 20px;

        gap: 12px;
    }

    .practice-mobile-cta.phase-message .practice-mobile-text {
        max-width: 280px;

        opacity: 1;

        white-space: normal;
    }

    .practice-mobile-cta.phase-final .practice-mobile-button {
        width: min(88vw, 360px);

        min-height: 64px;

        padding: 16px 24px;

        background-color: #F47C78;

        border-color: #F47C78;

        color: #FFF8F3;

        box-shadow:
            0 8px 20px rgba(244, 124, 120, 0.30),
            0 0 22px rgba(244, 124, 120, 0.20);

        transform: scale(1);
    }

    .practice-mobile-cta.phase-final .practice-mobile-arrow {
        color: #FFF8F3;

        transform: translateX(3px);
    }

    .practice-mobile-cta.phase-final .practice-mobile-button {
        animation: practiceButtonPulse 1.2s ease-in-out 1;
    }

    /* =========================================
       OCULTAR CTA ANTIGUO DE PRÁCTICA EN CELULAR
    ========================================= */
         .practice-invite-box {
            display: none !important;
        }

        /* =========================================
       EVITAR HOVER DE ESCRITORIO EN CELULAR
    ========================================= */

    .practice-invite,
    .practice-invite:hover,
    .practice-invite:active,
    .practice-invite:focus {
        background-color: transparent !important;
        box-shadow: none !important;
        transform: none !important;
    }

    .practice-mobile-cta {
        background-color: transparent !important;
    }

}

/* ================================
   TABLET Y ESCRITORIO
================================ */

@media (min-width: 700px) {

    .contact-form {
        padding: 34px;
    }

    .form-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .classes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rhythms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rhythms-footer {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .container {
        width: calc(100% - 64px);
        max-width: var(--container-width);
    }

    .hero-actions {
        width: auto;
        flex-direction: row;
    }

    .button {
        width: auto;
        min-width: 180px;
    }

    .hero-image-placeholder {
        min-height: 480px;
    }

    .booking-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .booking-steps-heading h2 {
        font-size: 3rem;
    }

    .testimonial-card {
        flex: 0 0 40%;
    }

    .testimonials-heading h2 {
        font-size: 3rem;
    }


    .practice-info {
        grid-template-columns: repeat(3, 1fr);
    }


    .practice-gallery {
        grid-template-columns: repeat(2, 1fr);
    }


    .practice-footer {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .practice-videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .practice-page-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .classes-preview-content h2 {
        font-size: 3.4rem;
    }

    .classes-page-intro h1 {
        font-size: 4rem;
    }
    
}


@media (min-width: 900px) {

    /* ================================
       HEADER ESCRITORIO
    ================================ */

    .hero-content {
        max-width: 650px;

        margin-left: 70px;
    }

    .hero h1 {
        max-width: 650px;
        font-size: 5.3rem;
    }

    .hero-description {
        max-width: 520px;
    }

    .navbar {
        min-height: 82px;
    }

    .navbar-left {
        gap: 24px;
    }

    .brand-logo {
        height: 120px;
    }

    .desktop-social-links {
        display: flex;
    }

    .social-links {
        display: flex;
    }

    .mobile-social-links {
        display: none;
    }

    .menu-button {
        display: none;
    }

    .nav-menu {
        position: static;

        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 20px;

        padding: 0;

        background-color: transparent;
        border: 0;
        box-shadow: none;
    }

    .nav-menu > a {
        padding: 10px 4px;
    }

    .nav-menu .nav-button {
        margin-top: 0;
        margin-left: 8px;

        padding: 11px 22px;


    }


    /* ================================
       HERO ESCRITORIO
    ================================ */

    .hero {

        padding: 15px 0;
    }

    .hero-container {
        grid-template-columns: 1.05fr 0.95fr;
        align-items: start;
        gap: 70px;
    }

    .hero-content {
        transform: translateY(5px);
    }

    .hero-image-wrapper {
        margin-top: -170px;
    }

    .hero-image {
        position: relative;

        width: auto;
        max-width: 100%;

        height: 850px;

        margin: 0 auto;

        display: block;

        object-fit: contain;

        background: transparent;

        border-radius: 0;
        box-shadow: none;

        z-index: 3;

        transform: translateY(18px);
    }

    .hero-image-wrapper {
        position: relative;

        display: flex;
        justify-content: center;
        align-items: flex-end;

        padding: 35px 25px 30px;

        isolation: isolate;

        background: transparent;
        overflow: visible;
    }
.hero-image-wrapper::before {
        content: "";

        position: absolute;

        width: 66%;
        height: 68%;

        right: 1%;
        bottom: 6%;

        background-color: var(--color-salmon);

        clip-path: polygon(
            18% 3%,
            30% 0%,
            43% 4%,
            56% 10%,
            68% 16%,
            80% 24%,
            91% 35%,
            97% 48%,
            100% 61%,
            96% 74%,
            88% 86%,
            76% 95%,
            62% 100%,
            48% 98%,
            35% 94%,
            24% 87%,
            14% 78%,
            7% 67%,
            3% 54%,
            5% 41%,
            9% 27%
        );

        transform: rotate(-3deg);

        z-index: 1;
    }
    .hero-image-wrapper::after {
        content: "";

        position: absolute;

        width: 56%;
        height: 34%;

        left: -8%;
        bottom: 5%;

        background-color: var(--color-peach);

        clip-path: polygon(
            0% 47%,
            7% 34%,
            16% 22%,
            27% 12%,
            40% 8%,
            52% 12%,
            64% 21%,
            75% 31%,
            86% 39%,
            100% 46%,
            94% 58%,
            84% 68%,
            72% 78%,
            59% 88%,
            46% 96%,
            32% 100%,
            19% 96%,
            9% 87%,
            3% 72%
        );

        transform: rotate(3deg);

        z-index: 0;
    }

    .hero-image-wrapper {
        min-height: 540px;
    }

    .hero-image-wrapper::after {
        width: 34%;
        height: 34%;

        left: 11%;
        bottom: 12%;
    }

    .hero-image-wrapper::before {
        width: 54%;
        height: 58%;

        right: 12%;
        bottom: 13%;
    }


    .hero-dots {
        width: 95px;
        height: 95px;

        right: 2%;
        top: 30%;
    }    .hero-card {
        right: -16px;
    }



    /* ================================
       RITMOS ESCRITORIO
    ================================ */

    .rhythms-section {
        padding: 50px 0;
    }

    .rhythms-grid {
        grid-template-columns: repeat(4, 250px);

        justify-content: center;

        gap: 22px;
    }

    .rhythm-card {
        width: 250px;

        min-height: 240px;

        padding: 20px;

        border-radius: 20px;
    }

    .rhythm-card h3 {
        margin-top: 20px;

        font-size: 1.65rem;
    }

    .rhythm-card p {
        margin-top: 10px;

        font-size: 0.84rem;
        line-height: 1.5;
    }

    .rhythm-card a {
        padding-top: 15px;

        font-size: 0.8rem;
    }

    .rhythm-level {
        font-size: 0.65rem;
    }

    .rhythm-icon {
        width: 42px;
        height: 42px;

        border-radius: 14px;
    }

    .rhythm-icon svg {
        width: 24px;
        height: 24px;
    }

    .rhythms-footer {
        width: 100%;
        max-width: 780px;

        margin: 40px auto 0;

        padding: 20px 24px;

        border-radius: 22px;
    }

    /* CTA SALIDAS - ESCRITORIO */

   .practice-invite-box {
        max-width: 760px;
        margin: 0 auto;

        padding: 18px 24px;
    }


    /* ================================
       CLASES ESCRITORIO
    ================================ */

    .classes-section {
        padding: 20px 0 80px;
    }

    .classes-section .container {
        max-width: 1100px;
    }
    .class-card {
        min-height: 420px;

        padding: 22px;
    }

    .classes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

 
    .rhythms-video {
        max-width: 350px;

        margin-left: 0;
        margin-right: auto;
        }

    .booking-steps-section {
        padding: 40px 0 30px;
    }

    .booking-steps-grid {
        grid-template-columns: repeat(3, 340px);

        justify-content: center;

        gap: 24px;
    }

    .booking-step {
        width: 340px;

        min-height: 220px;

        padding: 22px 22px;

        border-radius: 22px;
    }

    .booking-step h3 {
        font-size: 1.1rem;
    }

    .booking-step p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .booking-steps-heading h2 {
        font-size: 4rem;
    }

    .testimonials-section {
        padding: 15px 0 110px;
    }

     .testimonial-card {
        flex: 0 0 27%;
    }

    .testimonials-heading h2 {
        font-size: 4rem;
    }

   .practice-section {
        padding: 15px 0 50px;
    }


    .practice-heading h2 {
        font-size: 4.5rem;
    }

    .practice-gallery {
        grid-template-columns: repeat(12, 1fr);
        grid-auto-rows: 260px;
    }


    .practice-media {
        min-height: 0;
    }

    .practice-mosaic {
        grid-template-columns: repeat(12, 1fr);
        grid-auto-rows: 90px;

        gap: 16px;
    }

    /* VOLVER AL INICIO - ESCRITORIO */

    .practice-page-footer {
        width: 100%;

        display: flex;
        justify-content: center;
        align-items: center;
    }

    .practice-page-footer .button {
        width: auto;
        margin: 0;
    }

    .photo-large {
        grid-column: span 6;
        grid-row: span 4;
    }

    .photo-small {
        grid-column: span 3;
        grid-row: span 2;
    }

    .photo-tall {
        grid-column: span 3;
        grid-row: span 4;
    }

    .video-small {
        grid-column: span 3;
        grid-row: span 3;
    }

    .video-small video {
        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center;
    }


    /* FOTO GRANDE */

    .practice-media-large {
        grid-column: span 7;
        grid-row: span 2;
    }


    /* SEGUNDO ELEMENTO */

    .practice-media:nth-child(2) {
        grid-column: span 5;
    }


    /* TERCER ELEMENTO */

    .practice-media:nth-child(3) {
        grid-column: span 5;
    }


    /* CUARTO ELEMENTO */

    .practice-media:nth-child(4) {
        grid-column: span 5;
    }


    /* VIDEO INFERIOR */

    .practice-media-wide {
        grid-column: span 7;
    }

    .practice-page {
        padding: 40px 0 110px;
    }

    .practice-page-heading h1 {
        font-size: 5rem;
    }

    .practice-videos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }

    .practice-videos-grid {
        grid-template-columns: repeat(2, 280px);

        justify-content: center;

        gap: 24px;
    }

    .practice-video-card video {
        width: 100%;
        height: 360px;

        object-fit: cover;
        object-position: center;
    }

    .practice-page-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }


    .practice-page-photo {
        height: 300px;
    }

    .mobile-extra-link {
        display: none;
    }


    .desktop-more-menu {
        position: relative;

        display: block;
    }

    .desktop-more-button {
        display: flex;
        align-items: center;

        padding: 10px 4px;

        border: 0;

        background-color: transparent;

        color: var(--color-text-soft);

        font: inherit;
        font-weight: 600;

        cursor: pointer;

        appearance: none;
        -webkit-appearance: none;
    }

    .desktop-more-dropdown {
        position: absolute;

        top: calc(100% + 10px);
        right: 0;

        min-width: 190px;

        display: none;

        padding: 8px;

        border: 1px solid var(--color-border);
        border-radius: 16px;

        background-color: var(--color-surface);

        box-shadow: var(--shadow-soft);

        z-index: 100;
    }

    .desktop-more-dropdown.open {
        display: block;
    }
    .desktop-more-dropdown a {
        display: block;

        padding: 11px 12px;

        border-radius: 10px;

        color: var(--color-text-soft);

        font-size: 0.92rem;
        font-weight: 600;
    }

    .desktop-more-dropdown a:hover {
        background-color: var(--color-primary-soft);

        color: var(--color-primary-dark);
    }

    .classes-preview {
        padding: 85px 0;
    }

    .classes-preview-content h2 {
        font-size: 4rem;
    }

    .classes-page-intro {
        padding: 40px 0 10px;
    }

    .classes-page-intro h1 {
        font-size: 5rem;
    }

   /* =========================================
   CLASES + VIDEO ESCRITORIO
========================================= */

    .classes-layout {
        grid-template-columns: minmax(360px, 480px) 340px;

        justify-content: center;
        align-items: start;

        gap: 40px;
    }


    /* TARJETAS EN UNA SOLA COLUMNA */

    .classes-layout .classes-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }


    /* TARJETAS COMPACTAS */

    .classes-layout .class-card {
        min-height: auto;

        padding: 18px 20px;

        border-radius: 22px;
    }


    .classes-layout .class-card h3 {
        margin-top: 6px;
    }


    .classes-layout .class-card > p {
        margin-top: 8px;
    }


    .classes-layout .class-benefits {
        margin-top: 12px;
    }


    .classes-layout .class-link {
        margin-top: 14px;
        padding-top: 0;
    }


    /* CONTENEDOR DEL VIDEO */

    .classes-video-wrapper {
        position: sticky;
        top: 120px;

        width: 340px;
        height: 500px;

        justify-self: center;

        overflow: hidden;

        border-radius: 26px;
    }


    /* VIDEO VERTICAL RECORTADO */

    .classes-video {
        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center;

        display: block;
    }

  /* ================================
   INTRO CLASES ESCRITORIO
================================ */

    .classes-intro {
        display: grid;

        grid-template-columns: 0.8fr 1.2fr;

        align-items: center;

        gap: 60px;

        padding: 0 50px;
    }


    .classes-intro-image {
        display: block;

        width: 100%;
        max-width: 400px;

        height: 400px;

        overflow: hidden;

        border-radius: 28px;
    }


    .classes-intro-image img {
        width: 100%;
        height: 100%;

        display: block;

        object-fit: cover;
        object-position: center;
    }


    .classes-intro .classes-heading {
        max-width: none;

        margin: 0;

        text-align: left;
    }

    /* ================================
   CONTACTO ESCRITORIO
    ================================ */

    .contact-content {
        display: grid;
        grid-template-columns: 0.9fr 1.1fr;

        align-items: start;
        gap: 50px;

        width: calc(100% - 80px);
        max-width: 980px;

        margin-left: auto;
        margin-right: auto;
    }

    .contact-left {
        align-self: start;
    }

    .contact-heading {
        margin-bottom: 30px;
    }

    .contact-form {
        width: 100%;
        max-width: 450px;

        margin: 0;

        padding: 24px;

        align-self: start;
    }

    .hero-image-wrapper::before,
    .hero-image-wrapper::after {
        display: none !important;
    }

    /* ================================
   FAQ - ESCRITORIO
    ================================ */

    .faq-section {
        padding: 80px 0;
    }


    .faq-heading h2 {
        font-size: 4rem;
    }


    .faq-list {
        max-width: 900px;
    }


    .faq-question {
        padding: 20px 26px;

        font-size: 1.05rem;
    }


    .faq-answer p {
        padding-left: 26px;
        padding-right: 70px;

        font-size: 0.92rem;
    }
}