.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1494390248081-4e521a5940db?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center 40%;
    z-index: 1;
}

.hero {
    margin-top: 68px;
    position: relative;
    height: 58vh;
    min-height: 450px;
    max-height: 600px;
    display: flex;
    align-items: center;
    padding: 0 5%;
    overflow: hidden;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 650px;
}

.hero-content .hero-sub {
    font-size: 1.15rem;
    font-weight: 400;
    color: #fff;
    letter-spacing: .04em;
    margin-bottom: 1.2rem;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 5.5vw, 3.8rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 2rem;

    background: rgba(224, 0, 122, 0.5);
    padding: 1.2rem 1.8rem;
    border-radius: 8px;
    backdrop-filter: blur(4px);
    display: inline-block;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.btn-pink {
    display: inline-block;
    padding: .85rem 2.2rem;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
    background: #e0007a;
    color: #fff;
    border: none;
    border-radius: 3px;
    transition: background .25s;
    cursor: pointer;
}

.btn-pink:hover {
    background: #c2006a;
}

.about {
    display: flex;
    align-items: center;
    gap: 6%;
    padding: 6rem 7%;
    background: #fff;
}

.about-photo-wrap {
    flex: 0 0 auto;
    width: clamp(200px, 26vw, 330px);
    height: clamp(200px, 26vw, 330px);
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 6px 32px rgba(34, 0, 84, .13);
}

.about-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.about-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.7rem, 2.8vw, 2.6rem);
    font-weight: 400;
    color: #2c2c2c;
    margin-bottom: 1.1rem;
    line-height: 1.2;
}

.about-text p {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.9;
    color: #6b6b6b;
    max-width: 480px;
}

.services {
    padding: 5rem 5% 6rem;
    background: #fff;
    text-align: center;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem 3rem;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .9rem;
    width: 150px;
}

.service-circle {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 3px 16px rgba(34, 0, 84, .12);
}

.service-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.service-item:hover .service-circle img {
    transform: scale(1.08);
}

.service-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: #2c2c2c;
    line-height: 1.3;
    text-align: center;
}

.quote-section {
    padding: 6rem 5%;
    background: #220054;
    text-align: center;
}

.quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    line-height: .4;
    color: rgba(255, 255, 255, .2);
    display: block;
    margin-bottom: 1.5rem;
}

.quote-section blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.25rem, 2.1vw, 1.8rem);
    font-style: italic;
    font-weight: 300;
    color: rgba(255, 255, 255, .9);
    max-width: 780px;
    margin: 0 auto 1.4rem;
    line-height: 1.65;
}

.quote-author {
    font-size: .76rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .42);
    display: block;
    margin-bottom: 1.8rem;
}

.quote-tagline {
    font-size: 1.05rem;
    font-style: italic;
    color: rgba(255, 255, 255, .5);
}

.contact {
    padding: 5rem 5%;
    background: #fff;
    text-align: center;
}

.contact-label {
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #220054;
    display: block;
    margin-bottom: .6rem;
}

.contact h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 2.4vw, 2.1rem);
    font-weight: 400;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.contact a {
    display: inline-block;
    font-size: .95rem;
    color: #220054;
    text-decoration: none;
    border-bottom: 1px solid #220054;
    padding-bottom: 2px;
    transition: opacity .25s;
}

.contact a:hover {
    opacity: .6;
}

@media (max-width: 768px) {
    .hero {
        height: 50vw;
        min-height: 300px;
    }

    .about {
        flex-direction: column;
        text-align: center;
        padding: 4rem 6%;
    }

    .about-text p {
        max-width: 100%;
    }

    .services-grid {
        gap: 1.8rem 2rem;
    }

    .service-item {
        width: 128px;
    }

    .service-circle {
        width: 94px;
        height: 94px;
    }
}


*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --purple: #220054;
    --pink: #e0007a;
    --white: #ffffff;
    --dark: #2c2c2c;
    --mid: #6b6b6b;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Jost', sans-serif;
    background: #fff;
    color: var(--dark);
    overflow-x: hidden;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3%;
    height: 68px;
    background: var(--purple);
}

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    gap: 3px;
}

.nav-logo-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 400;
    letter-spacing: .22em;
    color: #fff;
    line-height: 1;
}

.nav-logo-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, .38);
}

.nav-logo-sub {
    font-family: 'Jost', sans-serif;
    font-size: .52rem;
    letter-spacing: .45em;
    color: rgba(255, 255, 255, .65);
    text-transform: uppercase;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-size: .82rem;
    font-weight: 400;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .88);
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
    transition: color .25s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: #fff;
    transition: width .3s;
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links .active::after {
    width: 100%;
}

.nav-socials {
    display: flex;
    align-items: center;
    gap: .7rem;
}

.nav-socials a {
    color: rgba(255, 255, 255, .85);
    display: flex;
    align-items: center;
    transition: opacity .2s;
}

.nav-socials a:hover {
    opacity: .6;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
}

@media (max-width: 800px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: var(--purple);
        padding: 2rem 5%;
        gap: 1.8rem;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-socials {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .about-page-content {
        flex-direction: column;
        text-align: center;
        padding: 4rem 6%;
        gap: 3rem;
    }
}

.page-banner {
    margin-top: 68px;
    background: #220054;
    padding: 5rem 5%;
    text-align: center;
    color: #fff;
}

.page-banner h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.page-banner p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .75);
    font-weight: 300;
}

.about-page-content {
    display: flex;
    align-items: center;
    gap: 8%;
    padding: 6rem 5%;
    background: #fff;
    max-width: 1100px;
    margin: 0 auto;
}

.about-page-content .about-text {
    flex: 1;
}

.about-page-content .about-text p {
    margin-bottom: 1.3rem;
}


.about-hero {
    padding: 6rem 5% 4rem;
    background: #fff;
}

.about-hero-container {
    display: flex;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    gap: 5%;
}

.about-hero-left {
    flex: 1;
    position: relative;
    padding-bottom: 2rem;
    padding-left: 2rem;
}

.hero-main-img {
    width: 100%;
    border-radius: 16px;
    display: block;
}

.hero-stats-box {
    position: absolute;
    bottom: 0;
    left: -2rem;
    background: #190041;
    color: #fff;
    display: flex;
    gap: 3rem;
    padding: 2.5rem 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 0.2rem;
    line-height: 1;
}

.stat-text {
    font-size: 0.95rem;
    font-weight: 300;
}

.about-hero-right {
    flex: 1;
    padding-left: 2rem;
}

.about-hero-right h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 400;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.hero-highlight {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
}

.hero-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c2c2c;
}

.about-pink-banner {
    background: #c756a5;
    color: #fff;
    text-align: center;
    padding: 3.5rem 2rem;
}

.about-pink-banner p {
    font-size: 1.4rem;
    font-weight: 400;
    margin: 0;
}

.about-features {
    display: flex;
    max-width: 1000px;
    margin: 0 auto;
    gap: 4rem;
    padding: 5rem 5% 3rem;
    background: #fff;
}

.feature-col {
    flex: 1;
}

.feature-col img {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.feature-col h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: #555;
    margin-bottom: 1rem;
    text-align: center;
}

.feature-col p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #2c2c2c;
    text-align: justify;
}

.about-final-text {
    padding: 2rem 5% 6rem;
    background: #fff;
}

.about-final-text p {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    color: #c756a5;
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .about-hero-container {
        flex-direction: column;
        gap: 3rem;
    }

    .about-hero-left {
        padding-left: 0;
        margin-bottom: 2rem;
    }

    .hero-stats-box {
        left: 50%;
        transform: translateX(-50%);
        bottom: -3rem;
        width: 90%;
        justify-content: center;
    }

    .about-hero-right {
        padding-left: 0;
        text-align: center;
    }

    .about-features {
        flex-direction: column;
        gap: 3rem;
    }

    .feature-col p {
        text-align: center;
    }
}


.atenciones-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 5%;
    text-align: center;
    overflow: hidden;
}

.atenciones-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1512621776951-a57141f2eefd?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.atenciones-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
}

.atenciones-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.atenciones-hero-content h1 {
    font-family: 'Jost', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.atenciones-hero-content p {
    background: rgba(200, 80, 160, 0.75);
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.6;
    padding: 1.2rem 2rem;
    border-radius: 4px;
    backdrop-filter: blur(4px);
}

.atenciones-toolbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 5% 1rem;
    display: flex;
    justify-content: flex-end;
}

.sorting {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    color: #333;
}

.sorting select {
    padding: 0.5rem 2rem 0.5rem 1rem;
    border: 1px solid #ccc;
    border-radius: 20px;
    background: #fff;
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    cursor: pointer;
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.7rem center;
    background-size: 1em;
}

.atenciones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 5% 5rem;
}

.atencion-card a {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s;
}

.atencion-card a:hover {
    transform: translateY(-5px);
}

.atencion-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 1.2rem;
}

.atencion-card h3 {
    font-family: 'Jost', sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
}

.atencion-price {
    font-size: 1.25rem;
    color: #2c2c2c;
}

.atencion-price strong {
    font-weight: 500;
}

.atencion-duration {
    font-size: 1rem;
    color: #777;
    font-weight: 300;
}

.atenciones-about {
    padding: 5rem 5% 7rem;
    background: #fff;
}

.at-about-container {
    display: flex;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    gap: 6%;
}

.at-about-left {
    flex: 1;
}

.at-about-left h2 {
    font-family: 'Jost', sans-serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.at-about-left p {
    font-size: 1.1rem;
    color: #6b6b6b;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 450px;
}

.at-stats-row {
    display: flex;
    gap: 3rem;
}

.at-stat {
    display: flex;
    flex-direction: column;
}

.at-stat-num {
    font-size: 2.4rem;
    font-weight: 400;
    color: #c756a5;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.at-stat-text {
    font-size: 0.95rem;
    color: #6b6b6b;
    font-weight: 300;
}

.at-about-right {
    flex: 1;
}

.at-about-right img {
    width: 100%;
    border-radius: 20px;
    display: block;
}

@media (max-width: 768px) {
    .at-about-container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .at-about-left p {
        margin: 0 auto 2.5rem;
    }

    .at-stats-row {
        justify-content: center;
    }

    .atenciones-grid {
        grid-template-columns: 1fr;
    }
}

.detalle-container {
    display: flex;
    max-width: 1100px;
    margin: 0 auto;
    gap: 6%;
    padding: 0 5%;
    align-items: flex-start;
}

.detalle-img-wrap {
    flex: 1;
    max-width: 450px;
}

.detalle-img-wrap img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.detalle-info {
    flex: 1.2;
    padding-top: 1rem;
}

.detalle-info h1 {
    font-family: 'Jost', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #2c2c2c;
    margin-bottom: 1.2rem;
}

.detalle-subtitle {
    font-size: 1.35rem;
    color: #2c2c2c;
    line-height: 1.5;
    font-weight: 300;
    margin-bottom: 2rem;
}

.detalle-precio-box {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.precio-num {
    font-size: 1.6rem;
    font-weight: 500;
    color: #000;
}

.precio-tiempo {
    font-size: 1.2rem;
    color: #666;
}

.btn-violet {
    display: inline-block;
    background: #8b3dff;
    color: #fff;
    padding: 0.8rem 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s;
    margin-bottom: 1rem;
}

.btn-violet:hover {
    background: #732cd9;
}

.detalle-direccion {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 3rem;
}

.detalle-incluye h3 {
    font-family: 'Jost', sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: #000;
    margin-bottom: 1.2rem;
}

.detalle-incluye ul {
    list-style-position: outside;
    padding-left: 1.2rem;
}

.detalle-incluye li {
    font-size: 1.05rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    font-weight: 300;
}

.detalle-incluye li strong {
    font-weight: 500;
    color: #000;
}

@media (max-width: 900px) {
    .detalle-container {
        flex-direction: column;
        gap: 3rem;
    }

    .detalle-img-wrap {
        max-width: 100%;
        margin: 0 auto;
    }
}