* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #F7F9F8;
}

:root {
    --subtitle: #78716C;
}

.container {
    max-width: 420px;
    margin: 0 auto;
    background: #FFF;
    padding: 80px 20px;
    background: #FDFBF7;
    margin-top: 2em;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 20px;
    position: relative;
}

p {
    font-family: "Inter", sans-serif;
}

a {
    text-decoration: none;
}

h1 {
    font-family: "Playfair Display", sans-serif;
    font-size: 1.8em;
}

.title {
    font-family: 'Playfair Display', sans-serif;
    font-style: italic;
    font-weight: 600;
    font-size: 1.3em;
    text-align: center;
    position: relative;
    margin: 1em 0;
}

.title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 25%;
    height: 0.5px;
    background: #D9D9D9;
}

.title::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 25%;
    height: 0.5px;
    background: #D9D9D9;
}

/* Animation */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.fade-up.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes luxury-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(140, 158, 140, 0.7);
    }

    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 12px rgba(140, 158, 140, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(140, 158, 140, 0);
    }
}

/* Sections */
#navbar {
    position: fixed;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 100%;
    max-width: 420px;
    z-index: 20;
    display: flex;
    justify-content: space-between;
    font-family: "Inter", sans-serif;
    padding: 15px 20px;
    background-color: rgba(255, 255, 255, .8);
    backdrop-filter: blur(15px);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;

    p {
        color: rgba(44, 44, 207, 0.6);
        font-weight: bold;
    }

    a {
        color: #555555;
        font-size: 1em;
    }

}

.nav-footer {
    position: fixed;
    transform: translateX(-50%);
    width: 100%;
    max-width: 420px;
    z-index: 20;
    padding: 15px 20px;
    font-family: "Inter", sans-serif;

    /* Glassmorphism */
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    a {
        font-size: 0.9em;
        color: #6D6D6D;
    }

    .current {
        font-weight: 600;
        color: #0F766E;
    }

    .cta-whatsapp {
        color: #FFF;
        background: #56A66B;
        padding: 8px 12px;
        border-radius: 50px;
        display: flex;
        align-items: center;
        gap: 5px;
        transition: background 0.3s ease;
        
        img{
            width: 22px;
        }
    }
    .cta-whatsapp:hover{
        background: #326b41;
    }

    .links-models {
        display: flex;
        gap: 1em;
    }
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    left: 50%;
    top: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);

    .home{
        transition: opacity 0.3s ease;
    }

    .home:hover{
        opacity: 0.4;
    }
}

.hero-image-background {
    position: relative;

    img {
        border-radius: 20px;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 150px;
    position: relative;
    z-index: 10;

    p {
        color: var(--subtitle);
        font-size: 0.9em;
    }

    .image-professional {
        img {
            border-radius: 50%;
            border: 2px solid #FFF;
            box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        }
    }

    .info-professional {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .small {
        color: #116D7D;
        background: #F0FDFA;
        padding: 8px 14px;
        border-radius: 20px;
        text-transform: uppercase;
        font-weight: 700;
        font-size: 0.8em;
        width: max-content;
        display: flex;
        align-items: center;
        gap: 4px;
        margin: 1em auto;

        img {
            width: 18px;
        }
    }

    .experience_message {
        border: 1px solid #DEDEDE;
        padding: 12px 18px;
        background: #FFF;
        border-radius: 10px;
        margin: 2em 0;

        h2 {
            font-family: "Inter", sans-serif;
            font-size: 1em;
            color: #2A4435;
            margin-top: 8px;
        }

        p {
            margin: 1em 0;
            font-weight: 500;
            line-height: 1.4;
        }
    }
}

.services {

    .cards {
        margin: 3em 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-family: "Inter", sans-serif;
        gap: 2em;

        .card {
            width: 320px;
            background: #FFF;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
            transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);

            .image-service {
                position: relative;
                height: 170px;
                overflow: hidden;

                .img-massage {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    transition: transform 0.5s ease;
                }

                .time {
                    display: flex;
                    align-items: center;
                    gap: 4px;
                    padding: 8px;
                    border-radius: 30px;
                    background: #FFF;
                    position: absolute;
                    right: 3%;
                    top: 8%;
                    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;


                    span {
                        color: rgb(15, 118, 110);
                        font-size: 0.85em;
                        font-weight: 550;
                    }

                    .sr-only {
                        position: absolute;
                        width: 1px;
                        height: 1px;
                        padding: 0;
                        margin: -1px;
                        overflow: hidden;
                        clip: rect(0, 0, 0, 0);
                        white-space: nowrap;
                        border: 0;
                    }
                }
            }


            .content {
                padding: 15px;
            }

            .text-content {

                h3 {
                    color: #23382D;
                    margin-bottom: 10px;
                }

                p {
                    font-size: 0.8em;
                    color: #57534E;
                }
            }

            .line {
                height: 1px;
                width: 100%;
                background: #F3F3F3;
                opacity: 0.9;
                margin: 1.2em 0;
            }

            .pricing_cta {
                display: flex;
                justify-content: space-between;
                align-items: center;

                .pricing {
                    font-size: 1.1em;
                    color: #292524;
                }

                .cta-whatsApp {
                    padding: 8px 12px;
                    border-radius: 20px;
                    color: #FFF;
                    background: #335440;
                    font-size: .85em;
                    font-weight: 600;

                    display: flex;
                    align-items: center;
                    gap: 2px;
                    transition: background 0.3s ease;
                }

                .cta-whatsApp:hover {
                    background: #38975e;
                }
            }
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .card:hover .image-service .img-massage {
            transform: scale(1.1);
        }

        .card:last-child .img-massage {
            object-position: center top;
        }
    }
}

.testimonials {
    font-family: "Lato", sans-serif;

    .title::before,
    .title::after {
        width: 0%;
    }

    .testimonial-cards {
        margin: 3em 0;
        display: flex;
        flex-direction: column;
        gap: 2em;
    }

    .card {
        background: #FFF;
        padding: 20px;
        display: flex;
        flex-direction: column;
        gap: 1.2em;
        border-radius: 20px;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
        border: 1px solid #e6e6e6;
    }

    .rating {
        width: 20px;
        display: flex;
        gap: 1px;
    }

    .testimonial-text {
        color: #57534E;
        font-size: 0.9em;
        font-style: italic;
    }

    .author-meta {
        display: flex;
        gap: 10px;
        align-items: center;
    }

    .avatar {
        width: 40px;
        aspect-ratio: 1 / 1;
        padding: 10px;
        background: #E7E5E4;
        border-radius: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .author {
        display: flex;
        flex-direction: column;
        gap: 4px;

        cite {
            font-weight: 600;
            font-size: 1em;
        }

        span {
            font-size: 0.8em;
            color: #A8A29E;
        }
    }
}

.site-footer {
    text-align: center;
    font-family: "Inter", sans-serif;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 5em;

    h2 {
        font-weight: 600;
    }

    p {
        color: #57534E;
        font-size: 0.9em;
        font-weight: 500;
    }

    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 1em;
        margin: 1em 0;

        img {
            width: 24px;
        }


        .footer-cta-whatsapp,
        .footer-cta-instagram {
            padding: 12px;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4px;
            border-radius: 12px;
            font-size: 1em;
            font-weight: 600;
        }

        .footer-cta-whatsapp {
            background: #0F766E;
            color: #FFF;
            box-shadow: rgba(15, 118, 110, 0.2) 0px 8px 24px;
            animation: luxury-pulse 3s ease-in-out infinite;
            transition: background 0.3s ease;

        }

        .footer-cta-whatsapp:hover {
            background: #38975e;
        }

        .footer-cta-instagram {
            background: rgba(247, 232, 251, .4);
            color: #BE185D;
            border: 1px solid rgba(254, 3, 99, .4);
            transition: background 0.3s ease;
        }

        .footer-cta-instagram:hover {
            background: #BE185D;
            color: #FFF;
        }
    }

    .accessibility-statement {
        border: none;
        background: none;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 4px;
        font-size: 0.9em;
        cursor: pointer;
        margin-top: 1em;

        svg {
            fill: #57534E;
        }
    }
    .accessibility-statement:hover{
        p{
            color: #2e2c2a;
        }
    }
    .accessibility-statement:hover svg{
            fill: #2e2c2a;
    }

    .credits{
        margin-top: 1em;
        font-size: 0.75rem;
        opacity: 0.85;

        a{
            color: #2f6f63;
        }
    }
    .credits:hover{
        opacity: 1;
        text-decoration: underline;
    }
}

.footer-cta {
    width: 100%;
    padding: 30px 0;
    text-align: center;
    background: #131820;
    font-family: "Lato", sans-serif;
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translateY(80%);
}

.footer-copy {
    font-size: 0.95rem;
    line-height: 1.4;
    color: #dadada;
    width: 90%;
    margin: 0 auto 12px;
    font-weight: 600;
}

.footer-price {
    font-size: 0.9rem;
    color: #FFF;
    margin-bottom: 20px;
}

.footer-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* CTA principal */
.btn-primary {
    width: 220px;
    display: block;
    padding: 14px 16px;
    background-color: #3a5f4d;
    color: #ffffff;
    text-decoration: none;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin: 0 auto;
    font-weight: 600;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* CTA secundário */
.btn-secondary {
    background: none;
    border: none;
    color: #3a5f4d;
    fill: #3a5f4d;
    font-size: 0.85rem;
    cursor: pointer;
    padding: 4px;
    transition: opacity 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.btn-secondary:hover {
    opacity: 0.7;
}


/* Modal */
#accessibilityDialog {
    position: relative;
    z-index: 99999;
    max-width: 380px;
    border-radius: 20px;
    background: #FFF;
    border: none;
    font-family: "Lato", sans-serif;
    margin: 16px auto;
    overflow: hidden;
    width: calc(100% - 20px);
    position: fixed;
    top: 50%;
    transform: translateY(-50%);

    opacity: 0;
    transform: translateY(-40%) scale(0.98);
    transition: opacity 0.25s ease, transform 0.25s ease;

    h2 {
        font-size: 1.3em;
        margin-bottom: 1em;
        padding-bottom: 1em;
        border-bottom: 1px solid #ccc;
    }

    .dialog-inner {
        max-height: 85vh;
        overflow-y: auto;
        padding: 30px 20px;
    }

    .text-content {
        border-bottom: 1px solid #ccc;
        margin-bottom: 2em;

        p {
            margin: 0.8em 0 2em;
            font-size: 0.9em;
        }

        ul {
            list-style: none;
            padding-left: 0;
            margin: 2em 0;

            li {
                position: relative;
                padding-left: 1.25rem;
                margin-bottom: 6px;
                font-size: 1em;
            }

            li::before {
                content: "•";
                position: absolute;
                left: 0;
                top: 0;
                color: #6b8f7a;
            }
        }

        .italic {
            font-style: italic;
        }

        .contrast {
            font-weight: 700;
        }

        .social-media {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            margin-top: -10px;
            gap: 8px;

            a:first-child {
                fill: #BE185D;
            }

            a:last-child {
                fill: green;
            }
        }
    }
    .text-content:last-child{
        border-bottom: none;
    }

    .close-dialog {
        color: #db1f1f;
        background: none;
        font-weight: 500;
        padding: 6px 12px;
        border: none;
        border-radius: 30px;
        font-size: 1.1em;
        cursor: pointer;
    }
}

#accessibilityDialog.is-visible {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

#accessibilityDialog::backdrop {
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(2px);
}



/* Responsive */
@media (max-width: 420px) {
    .container {
        margin-top: 0;
        border-radius: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    #accessibilityDialog {
        transition: none;
    }
}