        body {
            margin: 0;
            background-color: #f5efe6;
            color: #171513;
            font-family: Arial, sans-serif;
        }

        header {
            height: 80px;
            background-color: #171513;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 40px;
            box-sizing: border-box;
        }

      .logo img {
        width: 68px;
        height: 68px;
        display: block;
        object-fit: contain;
        aspect-ratio: 1;
        filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.28));
}

        .header-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .reserve-button {
            background-color: #c8a15a;
            color: #171513;
            text-decoration: none;
            padding: 12px 22px;
            border-radius: 4px;
            font-weight: bold;
        }

        .menu-button {
            color: #f5efe6;
            font-size: 28px;
            cursor: pointer;
        }

        /* ================================
   HERO PRINCIPAL
================================ */

.hero {
    position: relative;
    min-height: calc(100vh - 80px);
    background:
        linear-gradient(
            115deg,
            #0d0c0b 0%,
            #171513 45%,
            #2a211d 100%
        );
    color: #f5efe6;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}


/* Capa preparada para futura fotografía */

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 75% 40%,
            rgba(169, 103, 85, 0.28),
            transparent 35%
        ),
        radial-gradient(
            circle at 20% 80%,
            rgba(200, 161, 90, 0.10),
            transparent 30%
        );
    pointer-events: none;
}


/* CONTENIDO */

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1100px, 90%);
    margin: 0 auto;
    padding: 100px 0;
    text-align: left;
}


.hero-eyebrow {
    display: block;
    color: #c8a15a;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 4px;
    margin-bottom: 30px;
}


.hero h1 {
    font-family: Georgia, serif;
    font-size: clamp(65px, 8vw, 110px);
    line-height: 0.95;
    font-weight: normal;
    letter-spacing: -3px;
    margin: 0;
}


.hero h1 span {
    color: #c8a15a;
    font-style: italic;
}


.hero-description {
    max-width: 500px;
    color: #d5cec3;
    font-size: 18px;
    line-height: 1.8;
    margin: 40px 0;
}


/* BOTONES */

.hero-actions {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}


.hero-button {
    display: inline-block;
    background-color: #c8a15a;
    color: #171513;
    padding: 17px 28px;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}


.hero-button:hover {
    background-color: #f5efe6;
    transform: translateY(-2px);
}


.hero-secondary-button {
    color: #f5efe6;
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid #a96755;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}


.hero-secondary-button:hover {
    color: #c8a15a;
}


/* DETALLES DECORATIVOS */

.hero-decoration {
    position: absolute;
    border: 1px solid rgba(200, 161, 90, 0.35);
    border-radius: 50%;
    pointer-events: none;
}


.hero-decoration-left {
    width: 500px;
    height: 500px;
    left: -300px;
    bottom: -250px;
}


.hero-decoration-right {
    width: 650px;
    height: 650px;
    right: -400px;
    top: -250px;
}


.hero-bottom {
    position: absolute;
    z-index: 3;
    bottom: 25px;
    left: 5%;
    right: 5%;
    display: flex;
    justify-content: space-between;
    color: #77716a;
    font-size: 10px;
    letter-spacing: 3px;
}


/* MÓVIL */

@media (max-width: 700px) {

    .hero {
        min-height: calc(100vh - 70px);
    }

    .hero-content {
        padding: 80px 0;
    }

    .hero-eyebrow {
        font-size: 9px;
        letter-spacing: 2px;
        line-height: 1.7;
    }

    .hero h1 {
        font-size: clamp(52px, 15vw, 75px);
        letter-spacing: -2px;
    }

    .hero-description {
        font-size: 16px;
        margin: 30px 0;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
    }

    .hero-decoration-left {
        width: 300px;
        height: 300px;
        left: -200px;
        bottom: -150px;
    }

    .hero-decoration-right {
        width: 350px;
        height: 350px;
        right: -220px;
        top: -100px;
    }

    .hero-bottom {
        font-size: 8px;
    }

}
        .section {
            padding: 90px 20px;
            text-align: center;
        }

        .section-dark {
            background-color: #171513;
            color: #f5efe6;
        }

        .section h2 {
            font-family: Georgia, serif;
            font-size: 42px;
            font-weight: normal;
            margin-top: 0;
        }

        .section p {
            max-width: 750px;
            margin: auto;
            font-size: 18px;
            line-height: 1.8;
        }

        

        .service h3 {
            font-family: Georgia, serif;
            font-size: 28px;
            font-weight: normal;
        }

        .price {
            color: #a96755;
            font-size: 24px;
            font-weight: bold;
        }

        footer {
            background-color: #11100f;
            color: #f5efe6;
            padding: 50px 20px;
            text-align: center;
        }

        @media (max-width: 700px) {

            header {
                padding: 0 20px;
            }

            .reserve-button {
                display: none;
            }

            .hero h1 {
                font-size: 44px;
            }

            .hero p {
                font-size: 17px;
            }

            .services {
                flex-direction: column;
            }

            .service {
                width: 100%;
            }
        }
    /* ================================
   MENÚ LATERAL
================================ */

.menu-button {
    background: none;
    border: none;
    color: #f5efe6;
    font-size: 28px;
    cursor: pointer;
    padding: 5px;
}

.side-menu {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    max-width: 90%;
    height: 100vh;
    background-color: #171513;
    color: #f5efe6;
    z-index: 1000;
    transition: right 0.4s ease;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.25);
}

.side-menu.active {
    right: 0;
}

.side-menu-content {
    padding: 50px 40px;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.menu-logo {
    width: auto;
    width: 105px;
    height: 105px;
    object-fit: contain;
    object-position: left;
    aspect-ratio: 1;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.3));
    margin-bottom: 50px;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    color: #c8a15a;
    font-size: 40px;
    font-weight: 200;
    cursor: pointer;
}

.side-menu nav {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.side-menu nav a {
    color: #f5efe6;
    text-decoration: none;
    font-family: Georgia, serif;
    font-size: 21px;
    transition: color 0.2s ease;
}

.side-menu nav a:hover {
    color: #c8a15a;
}

.menu-reserve {
    margin-top: 45px;
    background-color: #c8a15a;
    color: #171513;
    text-decoration: none;
    text-align: center;
    padding: 15px;
    font-weight: bold;
    border-radius: 3px;
}

.menu-whatsapp {
    margin-top: 20px;
    text-align: center;
    color: #c8a15a;
}

/* Fondo oscuro que aparece detrás del menú */

.menu-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.55);
    opacity: 0;
    visibility: hidden;
    z-index: 900;
    transition: opacity 0.4s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Evita que la página se desplace mientras el menú está abierto */

body.menu-open {
    overflow: hidden;
}


/* Ajustes para móvil */

@media (max-width: 700px) {

    .side-menu {
        width: 100%;
        max-width: 100%;
        right: -100%;
    }

    .side-menu-content {
        padding: 40px 30px;
    }

    .menu-logo {
        width: 85px;
        height: 85px;
        margin-bottom: 40px;
    }

}
/* ================================
   SECCIÓN QUIÉNES SOMOS
================================ */

.section-about {
    background-color: #f5efe6;
    padding: 110px 40px;
}

.about-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
    text-align: left;
}

.section-label {
    display: inline-block;
    color: #a96755;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.about-text h2 {
    font-family: Georgia, serif;
    font-size: 48px;
    line-height: 1.15;
    font-weight: normal;
    margin: 0 0 30px;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #4d4842;
    margin-bottom: 20px;
}


.about-circle span:last-child {
    color: #f5efe6;
    margin-top: 5px;
}

@media (max-width: 700px) {

    .section-about {
        padding: 80px 25px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-text h2 {
        font-size: 36px;
    }

    .about-circle {
        width: 260px;
        height: 260px;
        font-size: 23px;
    }

}/* ================================
   IMAGEN Y FRASE - QUIÉNES SOMOS
================================ */

.about-visual {
    position: relative;
    padding-bottom: 45px;
}

.about-image-placeholder {
    width: 100%;
    height: 480px;
    display: block;
    object-fit: cover;
    object-position: center 42%;
    border-radius: 2px;
}

.about-quote {
    position: absolute;
    bottom: 0;
    left: -45px;
    background-color: #c8a15a;
    color: #171513;
    padding: 25px 30px;
    max-width: 280px;
    font-family: Georgia, serif;
    font-size: 20px;
    line-height: 1.4;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}


/* MÓVIL */

@media (max-width: 700px) {

    .about-visual {
        padding-bottom: 35px;
    }

    .about-image-placeholder {
        height: 380px;
    }

    .about-quote {
        left: 20px;
        right: 20px;
        max-width: none;
        padding: 20px;
        font-size: 18px;
    }

}
/* ================================
   SERVICIOS
================================ */

.services-section {
    background-color: #171513;
    color: #f5efe6;
}

.services-heading {
    max-width: 700px;
    margin: 0 auto 55px;
}

.services-heading .section-label {
    color: #c8a15a;
}

.services-heading h2 {
    margin-bottom: 20px;
}

.services-heading p {
    color: #d5cec3;
}


.services {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    text-align: left;
}


.service-card {
    position: relative;
    overflow: hidden;
    background-color: #f5efe6;
    background-position: right 28px top 28px;
    background-repeat: no-repeat;
    background-size: 210px;
    color: #171513;
    padding: 45px;
    min-height: 390px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    border-top: 3px solid #c8a15a;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.service-card--couples {
    background-image: url("assets/service-pareja.svg");
}

.service-card--individual {
    background-image: url("assets/service-individual.svg");
}

.service-card--identity {
    background-image: url("assets/service-identidad.svg");
}

.service-card--diversity {
    background-image: url("assets/service-diversidad.svg");
}

.service-card--meditation {
    background-image: url("assets/service-meditacion.svg");
}

.service-card--relaxation {
    background-image: url("assets/service-relajacion.svg");
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-card[hidden] {
    display: none;
}


.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}


.service-number {
    color: #a96755;
    font-size: 13px;
    letter-spacing: 3px;
    font-weight: bold;
    margin-bottom: 35px;
}


.service-card h3 {
    font-family: Georgia, serif;
    font-size: 34px;
    font-weight: normal;
    margin: 0 0 10px;
}


.service-duration {
    color: #a96755;
    font-weight: bold;
    margin-bottom: 25px;
}


.service-description {
    color: #514b44;
    line-height: 1.7;
    font-size: 16px;
}


.service-bottom {
    margin-top: auto;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}


.service-card .price {
    color: #171513;
    font-size: 27px;
    font-weight: bold;
}


.service-link {
    color: #171513;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 1px solid #c8a15a;
    padding-bottom: 4px;
}


.service-link:hover {
    color: #a96755;
}


.services-cta {
    text-align: center;
    margin-top: 55px;
}


@media (max-width: 700px) {

    .services {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 360px;
        padding: 35px 25px;
    }

    .service-card h3 {
        font-size: 29px;
    }

    .service-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

}
/* ================================
   CÓMO TRABAJAMOS
================================ */

.how-section {
    background-color: #f5efe6;
    color: #171513;
    padding: 110px 40px;
}

.how-heading {
    max-width: 700px;
    margin: 0 auto 80px;
    text-align: center;
}

.how-heading .section-label {
    color: #a96755;
}

.how-heading h2 {
    font-family: Georgia, serif;
    font-size: 48px;
    font-weight: normal;
    margin: 0 0 20px;
}

.how-heading p {
    color: #514b44;
    font-size: 17px;
    line-height: 1.8;
}

.how-steps {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.how-step {
    position: relative;
    padding: 0 45px;
    text-align: center;
}

.how-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 25px;
    right: 0;
    width: 50%;
    height: 1px;
    background-color: #c8a15a;
}

.how-step:not(:first-child)::before {
    content: "";
    position: absolute;
    top: 25px;
    left: 0;
    width: 50%;
    height: 1px;
    background-color: #c8a15a;
}

.step-number {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin: 0 auto 30px;
    border-radius: 50%;
    background-color: #171513;
    color: #c8a15a;
    font-size: 23px;
    font-weight: bold;
    transform: translateY(19px);
}

.step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.how-step h3 {
    font-family: Georgia, serif;
    font-size: 27px;
    font-weight: normal;
    margin-bottom: 18px;
}

.how-step p {
    color: #514b44;
    line-height: 1.7;
    font-size: 16px;
}


/* MÓVIL */

@media (max-width: 700px) {

    .how-section {
        padding: 80px 25px;
    }

    .how-heading h2 {
        font-size: 36px;
    }

    .how-steps {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .how-step {
        padding: 0;
    }

    .how-step::before,
    .how-step::after {
        display: none;
    }

}
/* ================================
   PROFESIONALES
================================ */

.professionals-section {
    background-color: #171513;
    color: #f5efe6;
    padding: 110px 40px;
}

.professionals-heading {
    max-width: 700px;
    margin: 0 auto 65px;
    text-align: center;
}

.professionals-heading .section-label {
    color: #c8a15a;
}

.professionals-heading h2 {
    font-family: Georgia, serif;
    font-size: 48px;
    font-weight: normal;
    margin: 0 0 20px;
}

.professionals-heading p {
    color: #d5cec3;
    font-size: 17px;
    line-height: 1.8;
}

.professionals-grid {
    max-width: 1050px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.professional-card {
    background-color: #f5efe6;
    color: #171513;
}

.professional-photo {
    height: 360px;
    background:
        linear-gradient(
            145deg,
            #2b2723,
            #a96755
        );
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f5efe6;
    font-family: Georgia, serif;
    font-size: 18px;
}

.professional-info {
    padding: 35px;
}

.professional-role {
    color: #a96755;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 2px;
}

.professional-info h3 {
    font-family: Georgia, serif;
    font-size: 32px;
    font-weight: normal;
    margin: 15px 0;
}

.professional-info p {
    color: #514b44;
    line-height: 1.7;
    margin-bottom: 25px;
}

.professional-link {
    color: #171513;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 1px solid #c8a15a;
    padding-bottom: 4px;
}

.professional-placeholder {
    opacity: 0.8;
}


/* MÓVIL */

@media (max-width: 700px) {

    .professionals-section {
        padding: 80px 25px;
    }

    .professionals-heading h2 {
        font-size: 36px;
    }

    .professionals-grid {
        grid-template-columns: 1fr;
    }

    .professional-photo {
        height: 300px;
    }

}
/* ================================
   PREGUNTAS FRECUENTES
================================ */

.faq-section {
    background-color: #f5efe6;
    color: #171513;
    padding: 110px 40px;
}

.faq-heading {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.faq-heading .section-label {
    color: #a96755;
}

.faq-heading h2 {
    font-family: Georgia, serif;
    font-size: 48px;
    font-weight: normal;
    margin: 0 0 20px;
}

.faq-heading p {
    color: #514b44;
    font-size: 17px;
    line-height: 1.8;
}

.faq-list {
    max-width: 850px;
    margin: 0 auto;
    border-top: 1px solid #c8a15a;
}

.faq-item {
    border-bottom: 1px solid #c8a15a;
}

.faq-item summary {
    position: relative;
    list-style: none;
    cursor: pointer;
    padding: 27px 50px 27px 5px;
    font-family: Georgia, serif;
    font-size: 20px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 5px;
    top: 21px;
    color: #a96755;
    font-family: Arial, sans-serif;
    font-size: 25px;
    font-weight: normal;
    transition: transform 0.25s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 50px 25px 5px;
}

.faq-answer p {
    color: #514b44;
    line-height: 1.8;
    margin: 0;
    font-size: 16px;
}

@media (max-width: 700px) {

    .faq-section {
        padding: 80px 25px;
    }

    .faq-heading h2 {
        font-size: 36px;
    }

    .faq-item summary {
        font-size: 18px;
        padding-right: 40px;
    }

    .faq-answer {
        padding-right: 25px;
    }

}
/* ================================
   CONTACTO
================================ */

.contact-section {
    background-color: #a96755;
    color: #f5efe6;
    padding: 110px 40px;
}

.contact-content {
    max-width: 1050px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.contact-text .section-label {
    color: #171513;
}

.contact-text h2 {
    font-family: Georgia, serif;
    font-size: 62px;
    font-weight: normal;
    margin: 0 0 25px;
}

.contact-text p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 500px;
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    padding: 25px 0;
    border-bottom: 1px solid rgba(245, 239, 230, 0.4);
    color: #f5efe6;
    text-decoration: none;
}

.contact-item:first-child {
    border-top: 1px solid rgba(245, 239, 230, 0.4);
}

.contact-item span {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-item strong {
    font-family: Georgia, serif;
    font-size: 20px;
    font-weight: normal;
}

.contact-item:hover strong {
    color: #171513;
}

@media (max-width: 700px) {

    .contact-section {
        padding: 80px 25px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-text h2 {
        font-size: 48px;
    }

    .contact-item {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

}
/* ================================
   CTA FINAL
================================ */

.final-cta {
    background-color: #171513;
    color: #f5efe6;
    padding: 120px 25px;
    text-align: center;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.final-cta .section-label {
    color: #c8a15a;
}

.final-cta h2 {
    font-family: Georgia, serif;
    font-size: 55px;
    line-height: 1.15;
    font-weight: normal;
    margin: 20px 0;
}

.final-cta p {
    color: #d5cec3;
    font-size: 18px;
    margin-bottom: 40px;
}

.final-cta-button {
    display: inline-block;
    background-color: #c8a15a;
    color: #171513;
    text-decoration: none;
    padding: 17px 32px;
    font-weight: bold;
    transition: background-color 0.25s ease;
}

.final-cta-button:hover {
    background-color: #f5efe6;
}

@media (max-width: 700px) {

    .final-cta {
        padding: 90px 25px;
    }

    .final-cta h2 {
        font-size: 40px;
    }

}
/* ================================
   FOOTER
================================ */

.site-footer {
    background-color: #11100f;
    color: #f5efe6;
    padding: 75px 40px 25px;
}

.footer-main {
    max-width: 1100px;
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 70px;
}

.footer-logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    aspect-ratio: 1;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.28));
    margin-bottom: 25px;
}

.footer-private-link {
    display: inline-block;
    line-height: 0;
}

.footer-brand p {
    max-width: 350px;
    color: #aaa39a;
    line-height: 1.7;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer-links h3 {
    font-family: Georgia, serif;
    font-size: 20px;
    font-weight: normal;
    margin: 0 0 12px;
    color: #c8a15a;
}

.footer-links a,
.footer-links span {
    color: #aaa39a;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    color: #f5efe6;
}

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 25px;
    border-top: 1px solid #332f2b;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #77716a;
    font-size: 12px;
}

.footer-bottom div {
    display: flex;
    gap: 25px;
}

.footer-bottom a {
    color: #77716a;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #f5efe6;
}

@media (max-width: 700px) {

    .site-footer {
        padding: 60px 25px 25px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .footer-bottom div {
        flex-direction: column;
        gap: 10px;
    }

}
/* =========================================
   ACCESO PROFESIONAL
========================================= */

/* =========================================
   FONDO ACCESO PROFESIONAL
========================================= */

.access-page {
    margin: 0;
    min-height: 100vh;

    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(196, 137, 91, 0.30),
            transparent 32%
        ),
        radial-gradient(
            circle at 80% 15%,
            rgba(185, 145, 92, 0.22),
            transparent 30%
        ),
        radial-gradient(
            circle at 50% 100%,
            rgba(151, 91, 62, 0.18),
            transparent 38%
        ),
        linear-gradient(
            135deg,
            #f7f0e8 0%,
            #efe2d5 45%,
            #f8f1e9 100%
        );

    color: #211d1a;

    font-family: inherit;

    position: relative;
    overflow: hidden;
}


/* Decoraciones suaves del fondo */

.access-page::before,
.access-page::after {
    content: "";
    position: fixed;

    border-radius: 50%;

    pointer-events: none;

    filter: blur(2px);
}


/* Halo dorado superior */

.access-page::before {
    width: 420px;
    height: 420px;

    top: -180px;
    right: -120px;

    background:
        radial-gradient(
            circle,
            rgba(190, 143, 87, 0.20),
            transparent 68%
        );
}


/* Halo terracota inferior */

.access-page::after {
    width: 500px;
    height: 500px;

    bottom: -260px;
    left: -180px;

    background:
        radial-gradient(
            circle,
            rgba(164, 91, 62, 0.16),
            transparent 70%
        );
}

.access-container {
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px 20px;

    box-sizing: border-box;
}


.access-card {
    width: 100%;
    max-width: 430px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 252, 248, 0.98),
            rgba(250, 242, 234, 0.96)
        );

    padding: 45px 40px;

    border-radius: 24px;

    border: 1px solid rgba(255, 255, 255, 0.8);

    box-shadow:
        0 30px 80px rgba(55, 36, 25, 0.16),
        0 8px 25px rgba(55, 36, 25, 0.08);

    text-align: center;

    box-sizing: border-box;

    position: relative;
    z-index: 2;
}
.access-logo {
    width: 155px;
    height: 155px;
    object-fit: contain;
    aspect-ratio: 1;
    filter: drop-shadow(0 6px 14px rgba(55, 36, 25, 0.2));

    margin-bottom: 20px;
}


.access-label {
    margin: 0 0 8px;

    color: #a66b45;

    font-size: 12px;

    letter-spacing: 3px;

    font-weight: 600;
}


.access-card h1 {
    margin: 0 0 10px;

    font-size: 32px;

    font-weight: 500;
}


.access-description {
    margin: 0 auto 30px;

    max-width: 320px;

    color: #756b64;

    line-height: 1.6;

    font-size: 15px;
}


.form-group {
    text-align: left;

    margin-bottom: 20px;
}


.form-group label {
    display: block;

    margin-bottom: 8px;

    font-size: 14px;

    font-weight: 600;
}


.form-group input {
    width: 100%;

    box-sizing: border-box;

    padding: 14px 15px;

    border: 1px solid #ded3ca;

    border-radius: 10px;

    background: #fff;

    color: #211d1a;

    font-size: 15px;

    outline: none;

    transition: border-color 0.2s ease,
                box-shadow 0.2s ease;
}


.form-group input:focus {
    border-color: #a66b45;

    box-shadow:
        0 0 0 3px rgba(166, 107, 69, 0.12);
}


.access-button {
    width: 100%;

    margin-top: 5px;

    padding: 15px;

    border: none;

    border-radius: 10px;

    background: #211d1a;

    color: #fff;

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 1.5px;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}


.access-button:hover {
    background: #a66b45;

    transform: translateY(-1px);
}


.access-button:disabled {
    opacity: 0.6;

    cursor: wait;

    transform: none;
}


.login-message {
    min-height: 22px;

    margin: 18px 0 5px;

    font-size: 14px;
}


.login-message.error {
    color: #a33b32;
}


.login-message.success {
    color: #4d7a50;
}


.back-home {
    display: inline-block;

    margin-top: 20px;

    color: #756b64;

    text-decoration: none;

    font-size: 13px;
}


.back-home:hover {
    color: #a66b45;
}


@media (max-width: 500px) {

    .access-card {
        padding: 35px 25px;
    }

    .access-card h1 {
        font-size: 28px;
    }

}
/* =========================================
   MENTE AMANTE — ACCESO PROFESIONAL
========================================= */

.access-page {
    margin: 0 !important;
    min-height: 100vh !important;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(185, 120, 75, 0.38),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 15%,
            rgba(184, 143, 84, 0.30),
            transparent 28%
        ),
        radial-gradient(
            circle at 50% 100%,
            rgba(135, 70, 48, 0.25),
            transparent 40%
        ),
        linear-gradient(
            135deg,
            #f9f3ec 0%,
            #ead8c8 48%,
            #f6eee6 100%
        ) !important;

    color: #211d1a;

    position: relative;
    overflow: hidden;
}


/* Círculo dorado decorativo */

.access-page::before {
    content: "";

    position: fixed;

    width: 480px;
    height: 480px;

    top: -250px;
    right: -150px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(194, 150, 82, 0.30),
            rgba(194, 150, 82, 0.08) 45%,
            transparent 70%
        );

    pointer-events: none;

    z-index: 0;
}


/* Círculo terracota decorativo */

.access-page::after {
    content: "";

    position: fixed;

    width: 550px;
    height: 550px;

    bottom: -330px;
    left: -220px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(158, 83, 57, 0.25),
            rgba(158, 83, 57, 0.06) 48%,
            transparent 72%
        );

    pointer-events: none;

    z-index: 0;
}


/* Tarjeta */

.access-page .access-container {
    position: relative;

    z-index: 2;
}


.access-page .access-card {
    background:
        linear-gradient(
            145deg,
            rgba(255, 252, 248, 0.98),
            rgba(250, 242, 234, 0.96)
        ) !important;

    border: 1px solid rgba(255, 255, 255, 0.85);

    box-shadow:
        0 30px 80px rgba(55, 36, 25, 0.16),
        0 8px 25px rgba(55, 36, 25, 0.08);

    border-radius: 24px;
}
/* =========================================
   DECORACIÓN NEGRA — ACCESO PROFESIONAL
========================================= */

.access-page {
    position: relative;
    overflow: hidden;
}

/* Gran círculo negro superior izquierdo */
.access-page::before {
    content: "";

    position: fixed;

    width: 430px;
    height: 430px;

    top: -250px;
    left: -170px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(20, 18, 17, 0.16) 0%,
            rgba(20, 18, 17, 0.08) 45%,
            transparent 72%
        );

    pointer-events: none;

    z-index: 0;
}


/* Gran círculo negro inferior derecho */
.access-page::after {
    content: "";

    position: fixed;

    width: 520px;
    height: 520px;

    right: -250px;
    bottom: -300px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(20, 18, 17, 0.20) 0%,
            rgba(20, 18, 17, 0.08) 45%,
            transparent 72%
        );

    pointer-events: none;

    z-index: 0;
}


/* Aseguramos que la tarjeta quede por encima */
.access-page .access-container {
    position: relative;
    z-index: 2;
}
/* =====================================================
   MENTE AMANTE
   ACCESO PROFESIONAL — FONDO EDITORIAL PREMIUM
===================================================== */

.access-page {
    position: relative !important;
    overflow: hidden !important;

    background:
        linear-gradient(
            135deg,
            #faf5ef 0%,
            #eee0d2 48%,
            #f8f0e8 100%
        ) !important;
}


/* =====================================================
   FORMA NEGRA PRINCIPAL
===================================================== */

.access-page::before {
    content: "";

    position: fixed;

    width: 560px;
    height: 560px;

    top: -350px;
    left: -230px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 60% 60%,
            #191716 0%,
            #25201d 48%,
            rgba(25, 23, 22, 0.88) 65%,
            transparent 72%
        );

    box-shadow:
        25px 30px 80px rgba(0, 0, 0, 0.13);

    pointer-events: none;

    z-index: 0;
}


/* =====================================================
   SEGUNDA FORMA NEGRA
===================================================== */

.access-page::after {
    content: "";

    position: fixed;

    width: 460px;
    height: 460px;

    right: -280px;
    bottom: -250px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(24, 22, 21, 0.92) 0%,
            rgba(24, 22, 21, 0.82) 45%,
            rgba(24, 22, 21, 0.45) 65%,
            transparent 73%
        );

    pointer-events: none;

    z-index: 0;
}


/* =====================================================
   CONTENEDOR DE LA TARJETA
===================================================== */

.access-page .access-container {
    position: relative;

    z-index: 5;
}


/* =====================================================
   TARJETA
===================================================== */

.access-page .access-card {
    position: relative;

    background:
        linear-gradient(
            145deg,
            rgba(255, 253, 250, 0.98),
            rgba(248, 238, 229, 0.96)
        ) !important;

    border:
        1px solid rgba(255, 255, 255, 0.85);

    border-radius: 26px;

    box-shadow:
        0 35px 90px rgba(38, 27, 20, 0.18),
        0 10px 30px rgba(38, 27, 20, 0.08);

    backdrop-filter: blur(12px);
}


/* =====================================================
   BORDE DORADO SUTIL
===================================================== */

.access-page .access-card::before {
    content: "";

    position: absolute;

    inset: 10px;

    border:
        1px solid rgba(176, 132, 71, 0.20);

    border-radius: 19px;

    pointer-events: none;
}


/* =====================================================
   CÍRCULOS DECORATIVOS DORADOS
===================================================== */

.access-page .access-card::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -105px;
    top: -95px;

    border-radius: 50%;

    border:
        1px solid rgba(177, 133, 72, 0.45);

    box-shadow:
        0 0 0 12px rgba(177, 133, 72, 0.05),
        0 0 0 28px rgba(177, 133, 72, 0.035);

    pointer-events: none;
}


/* =====================================================
   PEQUEÑO DETALLE DORADO
===================================================== */

.access-page .access-label {
    position: relative;

    display: inline-block;
}

.access-page .access-label::before,
.access-page .access-label::after {
    content: "";

    display: inline-block;

    width: 24px;
    height: 1px;

    vertical-align: middle;

    margin: 0 10px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #b38a52
        );
}

.access-page .access-label::after {
    background:
        linear-gradient(
            90deg,
            #b38a52,
            transparent
        );
}


/* =====================================================
   BOTÓN NEGRO
===================================================== */

.access-page .access-button {
    background:
        linear-gradient(
            135deg,
            #171514,
            #29221f
        ) !important;

    box-shadow:
        0 8px 20px rgba(20, 18, 17, 0.18);
}

.access-page .access-button:hover {
    background:
        linear-gradient(
            135deg,
            #a56d4b,
            #8f583c
        ) !important;

    box-shadow:
        0 10px 25px rgba(143, 88, 60, 0.22);
}


/* =====================================================
   PEQUEÑOS DETALLES DE FONDO
===================================================== */

.access-page .access-container::before {
    content: "";

    position: fixed;

    width: 210px;
    height: 210px;

    left: 7%;
    bottom: 8%;

    border-radius: 50%;

    border:
        1px solid rgba(25, 23, 22, 0.12);

    box-shadow:
        0 0 0 18px rgba(25, 23, 22, 0.025),
        0 0 0 42px rgba(25, 23, 22, 0.018);

    pointer-events: none;

    z-index: -1;
}


/* =====================================================
   DETALLE TERRACOTA
===================================================== */

.access-page .access-container::after {
    content: "";

    position: fixed;

    width: 95px;
    height: 95px;

    right: 9%;
    top: 12%;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(161, 91, 62, 0.22),
            rgba(161, 91, 62, 0.04) 70%,
            transparent
        );

    pointer-events: none;

    z-index: -1;
}


/* =====================================================
   MÓVIL
===================================================== */

@media (max-width: 600px) {

    .access-page::before {
        width: 380px;
        height: 380px;

        top: -260px;
        left: -210px;
    }

    .access-page::after {
        width: 320px;
        height: 320px;

        right: -220px;
        bottom: -190px;
    }

    .access-page .access-card {
        border-radius: 22px;
    }

}
/* =====================================================
   PANEL PROFESIONAL
===================================================== */

.panel-page {
    margin: 0;

    min-height: 100vh;

    background: #f5eee7;

    color: #211d1a;

    font-family: inherit;
}


/* SIDEBAR */

.panel-sidebar {
    position: fixed;

    top: 0;
    left: 0;
    bottom: 0;

    width: 250px;

    padding: 30px 20px;

    box-sizing: border-box;

    background:
        linear-gradient(
            180deg,
            #1b1918,
            #25201e
        );

    color: #fff;

    display: flex;

    flex-direction: column;

    z-index: 10;
}


.panel-brand {
    text-align: center;

    padding-bottom: 30px;

    border-bottom:
        1px solid rgba(255,255,255,0.10);
}


.panel-brand img {
    width: 105px;

    max-width: 100%;

    height: auto;

    display: block;

    margin: 0 auto 8px;
}


.panel-brand span {
    color: #c8a66a;

    font-size: 11px;

    letter-spacing: 3px;

    text-transform: uppercase;
}


/* NAVEGACIÓN */

.panel-navigation {
    display: flex;

    flex-direction: column;

    gap: 6px;

    margin-top: 30px;
}


.panel-nav-item {
    width: 100%;

    padding: 13px 15px;

    border: none;

    border-radius: 10px;

    background: transparent;

    color: rgba(255,255,255,0.65);

    text-align: left;

    font-size: 14px;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}


.panel-nav-item span {
    display: inline-block;

    width: 28px;

    color: #c8a66a;
}


.panel-nav-item:hover,
.panel-nav-item.active {
    background:
        rgba(255,255,255,0.08);

    color: #fff;
}


/* BOTÓN CERRAR SESIÓN */

.panel-sidebar-bottom {
    margin-top: auto;
}

.panel-home-link {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding: 12px 14px;
    color: #c8a66a;
    text-decoration: none;
    font-size: 13px;
    border: 1px solid rgba(200, 166, 106, .35);
    border-radius: 8px;
    transition: background-color .2s ease, color .2s ease;
}

.panel-home-link:hover {
    background: #c8a66a;
    color: #211d1a;
}


.logout-button {
    width: 100%;

    padding: 12px;

    border:
        1px solid rgba(255,255,255,0.15);

    border-radius: 9px;

    background: transparent;

    color: rgba(255,255,255,0.65);

    cursor: pointer;
}


.logout-button:hover {
    color: #fff;

    border-color:
        rgba(200,166,106,0.5);
}


/* CONTENIDO */

.panel-main {
    margin-left: 250px;

    min-height: 100vh;

    padding: 40px;

    box-sizing: border-box;
}


/* CABECERA */

.panel-header {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

    margin-bottom: 35px;
}


.panel-eyebrow {
    margin: 0 0 7px;

    color: #a66b45;

    font-size: 11px;

    letter-spacing: 3px;

    font-weight: 600;
}


.panel-header h1 {
    margin: 0;

    font-size: 34px;

    font-weight: 500;
}


/* USUARIO */

.panel-user {
    display: flex;

    align-items: center;

    gap: 13px;
}


.panel-user-info {
    text-align: right;
}


.panel-user-info strong {
    display: block;

    font-size: 14px;
}


.panel-user-info span {
    display: block;

    margin-top: 3px;

    color: #a66b45;

    font-size: 12px;
}


.panel-user-avatar {
    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #211d1a;

    color: #c8a66a;

    font-weight: 600;
}


/* SECCIONES */

.panel-section {
    display: none;
}


.panel-section.active {
    display: block;
}


/* BIENVENIDA */

.welcome-card {
    padding: 35px;

    border-radius: 20px;

    background:
        linear-gradient(
            135deg,
            #211d1a,
            #332a26
        );

    color: #fff;

    box-shadow:
        0 20px 45px rgba(30,20,15,0.12);

    margin-bottom: 25px;
}


.welcome-card .panel-eyebrow {
    color: #c8a66a;
}


.welcome-card h2 {
    max-width: 600px;

    margin: 0 0 12px;

    font-size: 27px;

    font-weight: 500;
}


.welcome-card p:last-child {
    max-width: 650px;

    margin: 0;

    color: rgba(255,255,255,0.68);

    line-height: 1.7;
}


/* TARJETAS */

.dashboard-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;

    margin-bottom: 25px;
}


.dashboard-card {
    display: flex;

    align-items: center;

    gap: 15px;

    padding: 22px;

    border-radius: 15px;

    background: #fffaf5;

    border:
        1px solid #eadfd5;

    box-shadow:
        0 8px 25px rgba(50,35,25,0.05);
}


.dashboard-icon {
    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #f1e1d4;

    color: #a66b45;

    font-size: 20px;
}


.dashboard-card span {
    display: block;
}


.dashboard-card div > span {
    color: #83776f;

    font-size: 12px;
}


.dashboard-card strong {
    display: block;

    margin-top: 4px;

    font-size: 24px;

    font-weight: 500;
}


/* INFORMACIÓN */

.panel-info-card {
    padding: 25px;

    border-radius: 15px;

    background: #fffaf5;

    border:
        1px solid #eadfd5;
}


.panel-info-card h3 {
    margin: 0 0 8px;

    font-size: 17px;
}


.panel-info-card p {
    margin: 0;

    color: #7d736c;

    line-height: 1.6;
}


/* SECCIONES VACÍAS */

.empty-section {
    min-height: 400px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 40px;

    box-sizing: border-box;

    background: #fffaf5;

    border:
        1px solid #eadfd5;

    border-radius: 20px;
}


.empty-section > span {
    font-size: 40px;

    color: #b38a52;

    margin-bottom: 15px;
}


.empty-section h2 {
    margin: 0 0 10px;

    font-size: 25px;

    font-weight: 500;
}


.empty-section p {
    max-width: 500px;

    margin: 0;

    color: #81766f;

    line-height: 1.7;
}


/* MÓVIL */

@media (max-width: 1000px) {

    .dashboard-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 750px) {

    .panel-sidebar {
        position: static;

        width: 100%;

        min-height: auto;
    }


    .panel-navigation {
        display: grid;

        grid-template-columns:
            repeat(2, 1fr);
    }


    .panel-sidebar-bottom {
        margin-top: 20px;
    }


    .panel-main {
        margin-left: 0;

        padding: 25px 18px;
    }


    .panel-header {
        align-items: flex-start;

        flex-direction: column;
    }


    .panel-user-info {
        text-align: left;
    }


    .dashboard-grid {
        grid-template-columns: 1fr;
    }

}
/* =========================================
   MEJORAR VISIBILIDAD DEL PANEL
========================================= */

/* Botón activo de navegación */
.panel-nav-item.active {
    background: #c8a66a !important;
    color: #211d1a !important;
    font-weight: 600;
}

/* Icono del botón activo */
.panel-nav-item.active span {
    color: #211d1a !important;
}

/* Nombre del usuario */
.panel-user-info strong {
    color: #211d1a !important;
}

/* Rol del usuario */
.panel-user-info span {
    color: #a6a645 !important;
    font-weight: 600;
}
/* =========================================
   COLORES DE LA CABECERA
========================================= */

/* "Inicio" grande */
#panelTitle {
    color: #211d1a !important;
}

/* "Propietario" grande */
#userName {
    color: #211d1a !important;
}
/* =====================================================
   PROFESIONALES
===================================================== */

.section-topbar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 28px;
}

.section-topbar h2 {
    margin: 0;
    font-size: 30px;
    font-weight: 500;
}

.section-description {
    margin: 8px 0 0;
    color: #81766f;
    line-height: 1.6;
    max-width: 650px;
}


/* BOTÓN PRINCIPAL */

.primary-panel-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 13px 19px;

    border: none;
    border-radius: 10px;

    background: #211d1a;
    color: #c8a66a;

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    transition:
        transform .2s ease,
        background .2s ease,
        box-shadow .2s ease;
}

.primary-panel-button:hover {
    background: #332a26;

    transform: translateY(-1px);

    box-shadow:
        0 8px 20px rgba(30, 20, 15, .12);
}

.primary-panel-button span {
    font-size: 20px;
    line-height: 1;
}


/* BUSCADOR */

.professionals-toolbar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.professional-search {
    flex: 1;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 0 15px;

    height: 45px;

    background: #fffaf5;

    border:
        1px solid #eadfd5;

    border-radius: 10px;
}

.professional-search span {
    color: #a66b45;
    font-size: 20px;
}

.professional-search input {
    width: 100%;

    border: none;
    outline: none;

    background: transparent;

    color: #211d1a;

    font-family: inherit;
}

.professional-filter select {
    height: 45px;

    padding: 0 14px;

    border:
        1px solid #eadfd5;

    border-radius: 10px;

    background: #fffaf5;

    color: #211d1a;

    outline: none;
}


/* TABLA */

.professionals-table-card {
    background: #fffaf5;

    border:
        1px solid #eadfd5;

    border-radius: 16px;

    overflow: hidden;

    box-shadow:
        0 8px 25px rgba(50,35,25,.04);
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.professionals-table {
    width: 100%;
    border-collapse: collapse;
}

.professionals-table th {
    padding: 16px 20px;

    background: #f5ebe2;

    color: #746960;

    font-size: 11px;

    letter-spacing: 1.2px;

    text-align: left;

    text-transform: uppercase;
}

.professionals-table td {
    padding: 18px 20px;

    border-top:
        1px solid #eee3da;

    color: #3b332e;

    font-size: 14px;
}

.table-loading {
    text-align: center;

    padding: 45px !important;

    color: #8b8078 !important;
}


/* PROFESIONAL */

.professional-name {
    display: flex;
    align-items: center;
    gap: 12px;
}

.professional-avatar {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #211d1a;

    color: #c8a66a;

    font-weight: 600;
}

.professional-name strong {
    display: block;
}

.professional-name small {
    display: block;

    margin-top: 3px;

    color: #91857d;
}


/* ESTADO */

.status-badge {
    display: inline-flex;

    align-items: center;

    padding: 6px 10px;

    border-radius: 30px;

    font-size: 11px;

    font-weight: 600;
}

.status-active {
    background: #e5f0e7;
    color: #397247;
}

.status-inactive {
    background: #eee9e6;
    color: #83766e;
}


/* ACCIONES */

.table-action-button {
    border: none;

    background: transparent;

    color: #a66b45;

    cursor: pointer;

    font-family: inherit;

    font-size: 13px;
}

.table-action-button:hover {
    color: #211d1a;
}

.appointment-contact {
    min-width: 190px;
}

.appointment-contact a {
    display: block;
    margin: 3px 0;
    color: #a66b45;
    text-decoration: none;
    font-size: 12px;
}

.appointment-contact a:hover {
    color: #211d1a;
    text-decoration: underline;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 12px 0;
    color: #4b4039;
    font-size: 14px;
}

.form-check input {
    accent-color: #a66b45;
}

.profile-card {
    display: grid;
    grid-template-columns: 130px minmax(0, 620px);
    gap: 35px;
    align-items: start;
    padding: 32px;
    background: #fffaf5;
    border: 1px solid #eadfd5;
    border-radius: 16px;
}

.profile-avatar-large {
    width: 112px;
    height: 112px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #211d1a;
    color: #c8a66a;
    font-size: 42px;
}

.profile-form {
    max-width: 620px;
}

.profile-form .primary-panel-button {
    width: auto;
}

.tpv-layout {
    display: grid;
    grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
    gap: 24px;
}

.panel-form-card {
    padding: 28px;
    background: #fffaf5;
    border: 1px solid #eadfd5;
    border-radius: 16px;
}

.panel-form-card h3 {
    margin: 0 0 24px;
    font-size: 22px;
    font-weight: 500;
}

@media (max-width: 850px) {
    .tpv-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .profile-card {
        grid-template-columns: 1fr;
        padding: 24px;
    }
}


/* =====================================================
   MODAL
===================================================== */

.modal-overlay {
    position: fixed;

    inset: 0;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 20px;

    box-sizing: border-box;

    background:
        rgba(25, 21, 19, .58);

    backdrop-filter: blur(5px);

    z-index: 100;
}

.modal-overlay.active {
    display: flex;
}

.professional-modal {
    position: relative;

    width: 100%;
    max-width: 540px;

    max-height: 90vh;

    overflow-y: auto;

    padding: 35px;

    box-sizing: border-box;

    border-radius: 20px;

    background: #fffaf5;

    box-shadow:
        0 30px 80px rgba(0,0,0,.22);
}

.modal-close {
    position: absolute;

    top: 18px;
    right: 20px;

    width: 35px;
    height: 35px;

    border: none;

    border-radius: 50%;

    background: #f0e5dc;

    color: #211d1a;

    font-size: 23px;

    line-height: 1;

    cursor: pointer;
}

.modal-heading {
    padding-right: 35px;

    margin-bottom: 28px;
}

.modal-heading h2 {
    margin: 0;

    font-size: 27px;

    font-weight: 500;
}

.modal-heading p:last-child {
    margin: 8px 0 0;

    color: #81766f;

    line-height: 1.6;
}


/* FORMULARIO */

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;

    margin-bottom: 7px;

    color: #4b413b;

    font-size: 13px;

    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;

    height: 46px;

    padding: 0 13px;

    box-sizing: border-box;

    border:
        1px solid #ded1c7;

    border-radius: 9px;

    background: #fff;

    color: #211d1a;

    font-family: inherit;

    outline: none;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #b38a52;

    box-shadow:
        0 0 0 3px rgba(179,138,82,.10);
}

.modal-submit {
    width: 100%;

    margin-top: 5px;
}

.form-message {
    min-height: 20px;

    margin-bottom: 12px;

    color: #a65b43;

    font-size: 13px;
}


/* MÓVIL */

@media (max-width: 700px) {

    .section-topbar {
        align-items: stretch;

        flex-direction: column;
    }

    .professionals-toolbar {
        align-items: stretch;

        flex-direction: column;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .professional-modal {
        padding: 28px 22px;
    }
}

.tpv-total-card {
    min-width: 190px;
    padding: 16px 20px;
    background: #211d1a;
    color: #fffaf5;
    border-radius: 12px;
}

.tpv-total-card span {
    display: block;
    margin-bottom: 5px;
    color: #c8a66a;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.tpv-total-card strong {
    font-size: 24px;
    font-weight: 500;
}

.booking-modal {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(25, 21, 19, .62);
    overflow-y: auto;
}

.booking-modal.active {
    display: flex;
}

.booking-dialog {
    position: relative;
    width: min(720px, 100%);
    max-height: 92vh;
    overflow-y: auto;
    padding: 42px;
    background: #fffaf5;
    color: #211d1a;
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .25);
}

.booking-dialog h2 {
    margin: 0 0 10px;
    font-family: Georgia, serif;
    font-size: 38px;
    font-weight: normal;
}

.booking-intro {
    margin: 0 0 25px;
    color: #756b64;
}

.booking-dialog textarea,
.booking-dialog select,
.booking-dialog input {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 13px;
    border: 1px solid #ded3ca;
    border-radius: 8px;
    background: #fff;
    color: #211d1a;
    font: inherit;
}

.booking-submit {
    border: 0;
    cursor: pointer;
}

.booking-send-options {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eadfd5;
}

.booking-send-options p {
    color: #4b4039;
    font-size: 14px;
}

.booking-send-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.booking-send-actions .hero-button,
.booking-whatsapp-button {
    border: 0;
    cursor: pointer;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
}

.booking-whatsapp-button {
    display: inline-block;
    padding: 17px 28px;
    background: #397247;
    color: #fffaf5;
}

.booking-whatsapp-button:hover {
    background: #2d5c39;
}

.picker-field {
    position: relative;
}

.picker-button {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 14px;
    border: 1px solid #ded3ca;
    border-radius: 9px;
    background: #fff;
    color: #211d1a;
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.picker-button:hover,
.picker-button[aria-expanded="true"] {
    border-color: #a66b45;
    box-shadow: 0 0 0 3px rgba(166, 107, 69, .1);
}

.picker-button:disabled {
    opacity: .55;
    cursor: not-allowed;
}

.picker-icon {
    color: #a66b45;
    font-size: 19px;
}

.picker-chevron {
    margin-left: auto;
    color: #a66b45;
}

.picker-panel {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 20;
    padding: 14px;
    border: 1px solid #eadfd5;
    border-radius: 12px;
    background: #fffaf5;
    box-shadow: 0 16px 35px rgba(50, 35, 25, .16);
}

.picker-panel-heading {
    margin-bottom: 10px;
    color: #8d6854;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.calendar-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    max-height: 230px;
    overflow-y: auto;
}

.calendar-option,
.time-option {
    border: 1px solid #eadfd5;
    border-radius: 7px;
    background: #fff;
    color: #4b4039;
    cursor: pointer;
    font: inherit;
}

.calendar-option {
    padding: 9px 7px;
    font-size: 12px;
    text-align: left;
    text-transform: capitalize;
}

.calendar-option:hover,
.time-option:hover {
    border-color: #a66b45;
    background: #f5ebe2;
    color: #211d1a;
}

.time-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
}

.time-option {
    padding: 10px 5px;
    color: #211d1a;
    font-size: 14px;
}

@media (max-width: 700px) {
    html {
        overflow-x: hidden;
    }

    header {
        height: 70px;
        padding: 0 16px;
    }

    .logo img {
        height: 48px;
    }

    .hero-content {
        width: calc(100% - 40px);
        padding: 64px 0 92px;
    }

    .hero h1 {
        font-size: clamp(48px, 15vw, 72px);
        letter-spacing: -1px;
    }

    .hero-description {
        max-width: none;
        font-size: 16px;
        line-height: 1.6;
    }

    .hero-actions,
    .hero-actions .hero-button,
    .hero-actions .hero-secondary-button {
        width: 100%;
    }

    .hero-actions {
        gap: 16px;
    }

    .hero-actions .hero-button {
        box-sizing: border-box;
        text-align: center;
    }

    .section,
    .how-section,
    .faq-section,
    .contact-section,
    .professionals-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .about-content,
    .contact-content,
    .services,
    .professionals-grid,
    .how-steps {
        grid-template-columns: 1fr;
    }

    .about-content {
        gap: 38px;
    }

    .about-quote {
        left: 12px;
        right: 12px;
        max-width: none;
    }

    .booking-dialog {
        width: 100%;
        max-height: calc(100vh - 24px);
        padding: 28px 18px;
        border-radius: 12px;
    }

    .booking-dialog .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .booking-dialog h2 {
        font-size: 32px;
    }

    .booking-send-actions {
        flex-direction: column;
    }

    .booking-send-actions a {
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }

    .calendar-options {
        grid-template-columns: 1fr;
    }

    .panel-page {
        display: block;
    }

    .panel-sidebar {
        position: relative;
        padding: 18px 14px;
    }

    .panel-brand {
        margin-bottom: 16px;
    }

    .panel-navigation {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px;
    }

    .panel-nav-item {
        min-width: 0;
        padding: 11px 8px;
        font-size: 12px;
    }

    .panel-main {
        min-width: 0;
        padding: 20px 14px;
    }

    .panel-header {
        gap: 16px;
        padding-bottom: 20px;
    }

    .section-topbar {
        align-items: stretch;
        flex-direction: column;
        gap: 18px;
    }

    .section-topbar .primary-panel-button,
    .tpv-total-card {
        width: 100%;
        box-sizing: border-box;
    }

    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .professionals-table {
        min-width: 760px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .professional-modal {
        padding: 26px 20px;
    }
}

@media (max-width: 700px) {
    .booking-dialog {
        padding: 30px 22px;
    }

    .tpv-total-card {
        width: 100%;
        box-sizing: border-box;
    }
}