*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-padding-top: 160px;
    scroll-behavior: smooth;
}

:root{
    --cream: #F5E8DE;
    --cream-light: #FBF3EC;
    --nude: #E8D5C8;
    --rose-mauve: #A56B82;
    --rose-mauve-dark: #8B4A6B;
    --copper: #C08870;
    --copper-soft: #D4A391;
    --text-dark: #2B2B2B;
    --text-soft: #5E4D47;
    --white: #FFFFFF;

    --font-script: 'Allura', cursive;
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Poppins', sans-serif;
}

body{
    background-color: var(--cream);
    color: var(--text-dark);
    font-family: var(--font-sans);
    line-height: 1.6;
    font-size: 16px;
}

a{
    color: var(--rose-mauve);
    text-decoration: none;
}

a:hover{
    color: var(--rose-mauve-dark);
}

ul{
    list-style: none;
}

h2{
    font-family: var(--font-serif);
    font-size: 48px;
    color: var(--text-dark);
    margin-bottom: 24px;
}

/* APARTADO DEL HEADER */

header{
    background-color: var(--rose-mauve-dark);
    padding: 8px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(245, 232, 222, 0.15);
}

.logo{
    display: block;
    line-height: 0;
}

.logo img{
    height: 110px;
    width: auto;
    display: block;
}

nav ul{
    display: flex;
    gap: 32px;
    align-items: center;
}

nav a{
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cream);
}

nav a:hover{
    color: var(--copper-soft);
}

main{
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

section{
    padding: 80px 0;
    border-bottom: 1px solid var(--nude);
}

section:last-child{
    border-bottom: none;
}

.section-cta{
    text-align: center;
    margin-top: 3rem;
}

article{
    margin-bottom: 32px;
}

.eyebrow{
    color: var(--copper);
    font-size: 0.75rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.lead{
    font-size: 1.125rem;
    color: var(--text-soft);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

/* APARTADO DEL HERO */

.hero{
    padding: 2.5rem 0 4rem;
}

.hero-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content .eyebrow{
    text-align: left;
}

.hero h1{
    font-family: var(--font-serif);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 400;
}

.hero h1 .script{
    font-family: var(--font-script);
    color: var(--rose-mauve);
    font-size: 5rem;
    font-weight: 400;
    display: block;
}

.hero-content .lead{
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 2.5rem;
    max-width: 480px;
}

.hero-actions{
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.hero-image{
    aspect-ratio: 4 / 3;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(139, 74, 107, 0.15);
}

.hero-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* APARTADO DE BOTONES */

.btn{
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-primary{
    background-color: var(--rose-mauve);
    color: var(--white);
}

.btn-primary:hover{
    background-color: var(--rose-mauve-dark);
    color: var(--white);
}

.btn-secondary{
    background-color: transparent;
    color: var(--rose-mauve-dark);
    border: 1.5px solid var(--rose-mauve);
}

.btn-secondary:hover{
    background-color: var(--rose-mauve);
    color: var(--white);
}

.btn-nav{
    background-color: var(--rose-mauve);
    color: var(--white) !important;
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-weight: 500;
}

.btn-nav:hover{
    background-color: var(--rose-mauve-dark);
    color: var(--white) !important;
}

/* APARTADO DE SERVICIOS */

.services-section{
    text-align: center;
}

.services-section > .lead{
    margin-bottom: 4rem;
}

.services-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    text-align: left;
}

.service-card{
    background-color: var(--white);
    padding: 2rem;
    border-radius: 1.25rem;
    border: 1px solid transparent;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--rose-mauve) 0%, var(--copper) 100%);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover{
    border-color: var(--copper-soft);
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(139, 74, 107, 0.12);
}

.service-card:hover::before{
    transform: scaleY(1);
}

.service-card h3{
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.service-card:hover h3{
    color: var(--rose-mauve-dark);
}

.service-card p{
    color: var(--text-soft);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.price{
    color: var(--rose-mauve-dark);
    font-weight: 600;
    font-size: 1rem;
}

.duration{
    color: var(--copper);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
}

/* APARTADO DE PRODUCTOS */

.products-section{
    text-align: center;
    background-color: var(--cream-light);
    padding: 4rem 2rem;
    border-radius: 2rem;
    margin-bottom: 4rem;
}

.products-section > .lead{
    margin-bottom: 4rem;
}

.products-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    text-align: left;
}

.product-card{
    background-color: var(--white);
    border-radius: 1.25rem;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    border: 1px solid transparent;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.45s ease,
                border-color 0.45s ease;
    position: relative;
}

.product-card::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--rose-mauve) 0%, var(--copper) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 3;
}

.product-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(139, 74, 107, 0.15);
    border-color: var(--copper-soft);
}

.product-card:hover::before{
    transform: scaleX(1);
}

.product-card .product-image{
    transition: background-color 0.45s ease;
    overflow: hidden;
}

.product-card:hover .product-image{
    background-color: var(--cream-light);
}

.product-card .product-image img{
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover .product-image img{
    transform: scale(1.06);
}

.product-card h3{
    transition: color 0.3s ease;
}

.product-card:hover h3{
    color: var(--rose-mauve-dark);
}

.product-card .product-price{
    transition: transform 0.3s ease;
}

.product-card:hover .product-price{
    transform: translateX(4px);
}

.product-image{
    aspect-ratio: 1 / 1;
    background-color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--copper);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    width: 100%;
}

.product-brand,
.product-card h3,
.product-price{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.product-brand{
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--copper);
    margin-top: 1.25rem;
    margin-bottom: 0.4rem;
}

.product-card h3{
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

.product-price{
    color: var(--rose-mauve-dark);
    font-weight: 600;
    font-size: 1rem;
    padding-bottom: 1.25rem;
    margin-top: auto;
}

/* APARTADO DE CONTACTO */

.contact-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2{
    margin-bottom: 1rem;
}

.contact-info .lead{
    margin-bottom: 2.5rem;
}

.contact-list li{
    padding: 1rem 0;
    border-bottom: 1px solid var(--nude);
}

.contact-list li:last-child{
    border-bottom: none;
}

.contact-label{
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: 0.4rem;
    font-weight: 500;
}

.contact-list a{
    font-size: 1.05rem;
    color: var(--text-dark);
}

.contact-list a:hover{
    color: var(--rose-mauve);
}

.hours-box{
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px rgba(139, 74, 107, 0.08);
}

.hours-box h3{
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 1.5rem;
}

.hours-box .script{
    font-family: var(--font-script);
    color: var(--rose-mauve);
    font-size: 2.25rem;
    font-weight: 400;
}

.hours-list li{
    display: flex;
    justify-content: space-between;
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--cream);
    font-size: 0.95rem;
}

.hours-list li:last-child{
    border-bottom: none;
}

.hours-list li span:first-child{
    color: var(--text-soft);
}

.hours-list li span:last-child{
    color: var(--rose-mauve-dark);
    font-weight: 500;
}

/* APARTADO DEL MAPA */

.map-wrapper{
    margin-top: 4rem;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(139, 74, 107, 0.08);
    aspect-ratio: 16 / 9;
}

.map-wrapper iframe{
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* APARTADO DE FOOTER */

/* APARTADO DE FOOTER */

footer{
    background-color: var(--rose-mauve-dark);
    color: var(--cream);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-grid{
    max-width: 1100px;
    margin: 0 auto 3rem;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.footer-brand{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo{
    display: block;
    line-height: 0;
}

.footer-logo img{
    height: 130px;
    width: auto;
    display: block;
}

.footer-about{
    color: rgba(245, 232, 222, 0.7);
    margin-top: 1.5rem;
    font-size: 0.95rem;
    max-width: 280px;
}

footer h4{
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--copper-soft);
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.footer-map{
    border-radius: 0.75rem;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    margin-bottom: 1rem;
    border: 1px solid rgba(245, 232, 222, 0.15);
}

.footer-map iframe{
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.footer-address{
    color: rgba(245, 232, 222, 0.85);
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-contact-list{
    margin-bottom: 1.5rem;
}

.footer-contact-list li{
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.875rem;
}

.contact-icon{
    font-size: 1rem;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.footer-contact-list a{
    color: rgba(245, 232, 222, 0.85);
    font-size: 0.9rem;
    transition: color 0.2s;
    word-break: break-word;
}

.footer-contact-list a:hover{
    color: var(--cream);
}

.footer-hours{
    border-top: 1px solid rgba(245, 232, 222, 0.15);
    padding-top: 1.25rem;
}

.footer-hours p{
    color: rgba(245, 232, 222, 0.7);
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
}

.footer-bottom{
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.5rem 24px 0;
    border-top: 1px solid rgba(245, 232, 222, 0.15);
    text-align: center;
}

.footer-bottom p{
    font-size: 0.8rem;
    color: rgba(245, 232, 222, 0.5);
}

/* APARTADO BOTON WSP */

.whatsapp-float{
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    z-index: 99;
    transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-float:hover{
    transform: scale(1.08);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
    color: var(--white);
}

/* ANIMACIONES DE PAGINA */

.fade-in{
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-in.visible{
    opacity: 1;
    transform: translateY(0);
}

/* Aparición en cascada para hijos */
.stagger > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.stagger.visible > * {
    opacity: 1;
    transform: translateY(0);
}

.stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.15s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.25s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.35s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.45s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.55s; }

/* APARTADO DE GALERIA */

.gallery-section{
    text-align: center;
}

.gallery-section > .lead{
    margin-bottom: 4rem;
}

.gallery-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 240px 240px;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.gallery-item{
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-item::after{
    content: '✦';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    font-size: 2rem;
    color: var(--white);
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 2;
    pointer-events: none;
}

.gallery-item::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 74, 107, 0.45) 0%, rgba(192, 136, 112, 0.35) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.gallery-item:hover img{
    transform: scale(1.08);
}

.gallery-item:hover::before{
    opacity: 1;
}

.gallery-item:hover::after{
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.gallery-item-1{
    grid-row: span 2;
}

.gallery-item-4{
    grid-column: span 2;
}

.gallery-cta{
    font-size: 1.05rem;
    color: var(--text-soft);
    margin-top: 2rem;
}

.gallery-cta a{
    font-weight: 500;
    border-bottom: 2px solid var(--copper-soft);
    padding-bottom: 2px;
    transition: border-color 0.3s;
}

.gallery-cta a:hover{
    border-color: var(--rose-mauve);
}

/* APARTADO DE PAGINA SERVICIOS */

.page-header{
    text-align: center;
    padding: 4rem 0 3rem;
}

.page-header h1{
    font-family: var(--font-serif);
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--text-dark);
    font-weight: 400;
    margin-bottom: 0;
}

.page-header h1 .script{
    font-family: var(--font-script);
    color: var(--rose-mauve);
    font-size: 4.5rem;
    font-weight: 400;
}

.services-page,
.shop-page{
    padding-bottom: 4rem;
}

.category-title{
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--rose-mauve-dark);
    margin: 3rem 0 1.5rem;
    padding-left: 0.5rem;
    border-left: 3px solid var(--copper);
}

.category-title:first-of-type{
    margin-top: 0;
}

.services-cta{
    text-align: center;
    margin-top: 5rem;
    padding: 3rem;
    background-color: var(--cream-light);
    border-radius: 1.5rem;
}

.services-cta p{
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

/* APARTADO PAGINA TIENDA */

.filters{
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3rem;
}

.filter-btn{
    background-color: transparent;
    color: var(--text-soft);
    border: 1.5px solid var(--nude);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover{
    border-color: var(--rose-mauve);
    color: var(--rose-mauve-dark);
}

.filter-btn.active{
    background-color: var(--rose-mauve);
    color: var(--white);
    border-color: var(--rose-mauve);
}

.shop-grid{
    grid-template-columns: repeat(4, 1fr);
}

.product-card.hidden{
    display: none;
}

.shop-info{
    margin-top: 5rem;
    padding: 3rem;
    background-color: var(--cream-light);
    border-radius: 1.5rem;
    text-align: center;
}

.shop-info h3{
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--rose-mauve-dark);
}

.shop-info p{
    color: var(--text-soft);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px){
    header {
        padding: 1rem 1.25rem;
        flex-wrap: wrap;
    }

    nav ul {
        gap: 1rem;
    }

    .logo img {
        height: 50px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-image {
        aspect-ratio: 4 / 3;
        order: -1;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h1 .script {
        font-size: 3rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .page-header h1 .script {
        font-size: 3rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-section,
    .shop-page {
        padding: 2.5rem 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .map-wrapper {
        margin-top: 2.5rem;
        aspect-ratio: 4 / 3;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-brand {
        align-items: center;
        text-align: center;
    }

    .footer-about {
        max-width: 100%;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 180px 180px 180px 180px;
    }

    .gallery-item-1,
    .gallery-item-4 {
        grid-row: auto;
        grid-column: auto;
    }

    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* APARTADO PÁGINA RESERVAR */

.booking-page{
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    padding-bottom: 4rem;
    align-items: start;
}

.booking-stepper{
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    padding: 1.75rem 2rem;
    background-color: var(--white);
    border-radius: 1.25rem;
    box-shadow: 0 8px 32px rgba(139, 74, 107, 0.08);
    border: 1px solid var(--nude);
    position: relative;
}

.booking-stepper::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--copper-soft) 20%, var(--copper-soft) 80%, transparent 100%);
    z-index: 0;
}

.step{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    position: relative;
    z-index: 1;
    background-color: var(--white);
    padding: 0 0.75rem;
}

.step-number{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    border: 2px solid var(--nude);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--text-soft);
    transition: all 0.3s;
}

.step-label{
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-soft);
    font-weight: 500;
}

.step.active .step-number{
    background-color: var(--rose-mauve);
    border-color: var(--rose-mauve);
    color: var(--white);
}

.step.active .step-label{
    color: var(--rose-mauve-dark);
    font-weight: 600;
}

.step.completed .step-number{
    background-color: var(--copper);
    border-color: var(--copper);
    color: var(--white);
}

.char-counter-reservar {
    text-align: right;
    color: var(--text-soft);
    font-size: 0.75rem;
    margin: 0.4rem 0 0 0;
    transition: color 0.3s ease;
}

.char-counter-reservar.casi-lleno {
    color: var(--copper);
}

.char-counter-reservar.lleno {
    color: var(--rose-mauve-dark);
    font-weight: 600;
}

/* APARTADO DE SELECCIÓN DE SERVICIO */

.booking-step{
    display: none;
}

.booking-step.active{
    display: block;
}

.step-title{
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.step-description{
    color: var(--text-soft);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.service-option{
    background-color: var(--white);
    padding: 1.75rem;
    border-radius: 1rem;
    border: 2px solid var(--nude);
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.4s ease,
                border-color 0.4s ease,
                background-color 0.4s ease;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.service-option::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--rose-mauve) 0%, var(--copper) 100%);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-option:hover{
    border-color: var(--copper-soft);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(139, 74, 107, 0.1);
}

.service-option:hover::before{
    transform: scaleY(1);
}

/* Estado seleccionado: claramente diferenciado */
.service-option.selected{
    border-color: var(--rose-mauve);
    background-color: var(--cream-light);
    box-shadow: 0 8px 28px rgba(139, 74, 107, 0.18);
    transform: translateY(-4px);
}

.service-option.selected::before{
    transform: scaleY(1);
}

.service-option.selected::after{
    content: '✓';
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--rose-mauve) 0%, var(--rose-mauve-dark) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(139, 74, 107, 0.25);
}

.service-option.selected h3{
    color: var(--rose-mauve-dark);
}

.service-option h3{
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
    transition: color 0.3s ease;
}
.service-option:hover h3{
    color: var(--rose-mauve-dark);
}

.service-option p{
    color: var(--text-soft);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.service-meta{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0;
}

.service-option .price{
    color: var(--rose-mauve-dark);
    font-weight: 600;
    font-size: 1rem;
}

.service-option .duration{
    color: var(--copper);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
}

/* ACCIONES DE NAVEGACIÓN */

.booking-actions{
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--nude);
}

.booking-actions .btn-secondary{
    margin-right: auto;
}

.booking-actions .btn-primary{
    margin-left: auto;
}

.btn:disabled{
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

/* APARTADO DE CALENDARIO Y HORARIOS */

.calendar-wrapper{
    background-color: var(--white);
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid var(--nude);
    margin-bottom: 2rem;
    box-shadow: 0 8px 28px rgba(139, 74, 107, 0.06);
}

.calendar-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.calendar-month{
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--rose-mauve-dark);
    margin: 0;
    text-transform: capitalize;
    letter-spacing: 0.02em;
}

.calendar-nav{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--nude);
    background-color: var(--white);
    color: var(--rose-mauve-dark);
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-nav:hover{
    background: linear-gradient(135deg, var(--rose-mauve) 0%, var(--rose-mauve-dark) 100%);
    border-color: var(--rose-mauve);
    color: var(--white);
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(139, 74, 107, 0.25);
}

.calendar-weekdays{
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.calendar-weekdays span{
    text-align: center;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--copper);
    font-weight: 500;
    padding: 0.5rem 0;
}

.calendar-grid{
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.25rem;
}

.calendar-day{
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    background-color: transparent;
    border: 1.5px solid transparent;
    border-radius: 0.75rem;
    cursor: pointer;
    color: var(--text-dark);
    transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
    font-family: var(--font-sans);
    font-weight: 500;
}

.calendar-day:hover:not(.disabled):not(.empty):not(.selected){
    background-color: var(--cream-light);
    border-color: var(--copper-soft);
    transform: scale(1.05);
}

.calendar-day.empty{
    cursor: default;
}

.calendar-day.disabled{
    color: rgba(94, 77, 71, 0.25);
    cursor: not-allowed;
    text-decoration: line-through;
}

.calendar-day.today{
    border-color: var(--copper);
    font-weight: 600;
    color: var(--rose-mauve-dark);
}

.calendar-day.selected{
    background: linear-gradient(135deg, var(--rose-mauve) 0%, var(--rose-mauve-dark) 100%);
    color: var(--white);
    border-color: var(--rose-mauve-dark);
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(139, 74, 107, 0.35);
    transform: scale(1.05);
}

.calendar-day.has-availability{
    position: relative;
}

.calendar-day.has-availability::after{
    content: '';
    position: absolute;
    bottom: 4px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--copper);
}

.calendar-day.selected.has-availability::after{
    background-color: var(--white);
}

/* APARTADO DE TIME SLOTS */

.time-slots-wrapper{
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 1.25rem;
    border: 1px solid var(--nude);
}

.slots-title{
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.slots-help{
    color: var(--text-soft);
    font-size: 0.875rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.time-slots{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.time-slot{
    padding: 0.9rem 0.5rem;
    background-color: var(--white);
    border: 1.5px solid var(--nude);
    border-radius: 0.75rem;
    font-size: 0.95rem;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    font-family: var(--font-sans);
    color: var(--text-dark);
    font-weight: 500;
}

.time-slot:hover:not(.disabled):not(.selected){
    border-color: var(--rose-mauve);
    background-color: var(--cream-light);
    color: var(--rose-mauve-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 74, 107, 0.12);
}

.time-slot.selected{
    background: linear-gradient(135deg, var(--rose-mauve) 0%, var(--rose-mauve-dark) 100%);
    color: var(--white);
    border-color: var(--rose-mauve-dark);
    font-weight: 600;
    box-shadow: 0 6px 16px rgba(139, 74, 107, 0.3);
    transform: translateY(-2px);
}

.time-slot.disabled{
    background-color: var(--cream-light);
    color: rgba(94, 77, 71, 0.3);
    cursor: not-allowed;
    text-decoration: line-through;
}

@media (max-width: 768px){
    .time-slots {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* APARTADO DE FORMULARIO */

.booking-form{
    margin-bottom: 2rem;
}

.form-field{
    margin-bottom: 1.25rem;
}

.form-field label{
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: 0.6rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.form-field:focus-within label{
    color: var(--rose-mauve-dark);
}

.form-field input,
.form-field textarea{
    width: 100%;
    padding: 1rem 1.15rem;
    border: 1.5px solid var(--nude);
    border-radius: 0.75rem;
    background-color: var(--cream-light);
    font-size: 1rem;
    font-family: var(--font-sans);
    color: var(--text-dark);
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.form-field input:hover,
.form-field textarea:hover{
    border-color: var(--copper-soft);
    background-color: var(--white);
}

.form-field input:focus,
.form-field textarea:focus{
    outline: none;
    border-color: var(--rose-mauve);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(165, 107, 130, 0.12);
    transform: translateY(-1px);
}

.form-field input::placeholder,
.form-field textarea::placeholder{
    color: rgba(94, 77, 71, 0.4);
}

.form-field textarea{
    resize: vertical;
    min-height: 100px;
    font-family: var(--font-sans);
}

.form-field-checkbox{
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 2rem 0 1.5rem;
    padding: 1rem 1.25rem;
    background-color: var(--cream-light);
    border-radius: 0.75rem;
    border: 1.5px solid transparent;
    transition: all 0.3s ease;
}

.form-field-checkbox:hover{
    border-color: var(--copper-soft);
}

.form-field-checkbox input[type="checkbox"]{
    width: 20px;
    height: 20px;
    accent-color: var(--rose-mauve);
    cursor: pointer;
    flex-shrink: 0;
}

.form-field-checkbox label{
    font-size: 0.9rem;
    color: var(--text-soft);
    margin-bottom: 0;
    text-transform: none;
    letter-spacing: 0;
    cursor: pointer;
    font-weight: 400;
}

/* APARTADO DE CONFIRMACIÓN */

.booking-success{
    text-align: center;
    padding: 2rem;
}

.success-icon{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--rose-mauve);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
}

.booking-success h2{
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.booking-success > p{
    color: var(--text-soft);
    margin-bottom: 2rem;
}

.booking-summary{
    background-color: var(--cream-light);
    padding: 1.75rem;
    border-radius: 1rem;
    text-align: left;
    max-width: 400px;
    margin: 0 auto 2rem;
}

.booking-summary h3{
    font-family: var(--font-serif);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    text-align: center;
}

.booking-summary ul{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.booking-summary li{
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px dashed var(--nude);
    font-size: 0.95rem;
}

.booking-summary li:last-child{
    border-bottom: none;
}

/* SIDEBAR DE RESUMEN EN VIVO */

.booking-summary-sidebar{
    background-color: var(--white);
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid var(--nude);
    position: sticky;
    top: 100px;
    align-self: start;
    box-shadow: 0 8px 32px rgba(139, 74, 107, 0.08);
    overflow: hidden;
    position: sticky;
}

.booking-summary-sidebar::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--rose-mauve) 0%, var(--copper) 100%);
}

.booking-summary-sidebar h3{
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--nude);
}

.summary-list{
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.summary-list li{
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 0;
}

.summary-label{
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--copper);
    font-weight: 500;
}

.summary-value{
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
}

.summary-total{
    margin-top: 1rem !important;
    padding-top: 1rem;
    border-top: 1px solid var(--nude);
}

.summary-total .summary-value{
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--rose-mauve-dark);
    font-weight: 600;
}

/* APARTADO RESPONSIVE PARA RESERVAR */

@media (max-width: 900px){
    .booking-page{
        grid-template-columns: 1fr;
    }

    .booking-summary-sidebar{
        position: static;
        order: -1;
    }

    .services-selection{
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px){
    .booking-stepper{
        gap: 0.5rem;
    }

    .step{
        padding: 0 0.25rem;
    }

    .step-label{
        font-size: 0.65rem;
        display: none;
    }

    .step.active .step-label{
        display: block;
    }
}

/* CUENTA DE PAGO EN CONFIRMACION */

.payment-cta {
    background-color: var(--cream-light);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    margin: 2rem auto;
    max-width: 400px;
    border: 2px solid var(--rose-mauve);
}

.payment-cta h3 {
    font-family: var(--font-serif);
    color: var(--rose-mauve-dark);
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.payment-cta p {
    color: var(--text-soft);
    margin-bottom: 1.5rem;
}

.btn-payment {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

.payment-note {
    font-size: 0.8rem;
    color: var(--text-soft);
    margin-top: 1rem;
    margin-bottom: 0;
    font-style: italic;
}

/* CARRUSEL DE PRODUCTOS */

.carousel-wrapper {
    position: relative;
    margin: 0 auto 2.5rem;
    max-width: 100%;
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 1.5rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-track .product-card {
    flex: 0 0 calc((100% - 3rem) / 3);
    scroll-snap-align: start;
    margin-bottom: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    cursor: pointer;
}

.carousel-track .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(139, 74, 107, 0.18);
}

.carousel-track .product-card .product-image {
    overflow: hidden;
    transition: transform 0.4s ease;
}

.carousel-track .product-card:hover .product-image {
    transform: scale(1.05);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--white);
    border: 2px solid var(--rose-mauve);
    color: var(--rose-mauve);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.carousel-btn:hover {
    background-color: var(--rose-mauve);
    color: var(--white);
    transform: translateY(-50%) scale(1.05);
}

.carousel-btn-prev {
    left: -22px;
}

.carousel-btn-next {
    right: -22px;
}

@media (max-width: 768px) {
    .carousel-track .product-card {
        flex: 0 0 100%;
    }

    .carousel-track {
        padding: 1.5rem 0;
        gap: 1rem;
    }

    .carousel-btn {
        display: none;
    }
}

/* PAGINA CALIFICAR RESEÑA */

.resena-page {
    padding-top: 3rem;
    padding-bottom: 4rem;
    min-height: 60vh;
}

.resena-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 1.5rem;
    border: 1px solid var(--nude);
    text-align: center;
}

.resena-state h1 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.resena-state .lead {
    color: var(--text-soft);
    margin-bottom: 2rem;
}

.resena-state .eyebrow {
    color: var(--copper);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

/* SECCION DE ESTRELLAS */
.rating-section {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: var(--cream-light);
    border-radius: 1rem;
}

.rating-label {
    color: var(--text-soft);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.stars-input {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars-input .star {
    font-size: 2.5rem;
    color: var(--nude);
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
}

.stars-input .star:hover,
.stars-input .star.active {
    color: var(--copper);
    transform: scale(1.1);
}

.rating-feedback {
    color: var(--text-soft);
    font-size: 0.875rem;
    font-style: italic;
    margin-bottom: 0;
}

/* FORMULARIO */
.resena-page .form-field {
    text-align: left;
    margin-bottom: 1.5rem;
}

.resena-page .form-field label {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.875rem;
}

.resena-page .form-field textarea {
    width: 100%;
    padding: 1rem;
    border: 1.5px solid var(--nude);
    border-radius: 0.75rem;
    background-color: var(--white);
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--text-dark);
    resize: vertical;
    min-height: 140px;
    transition: border-color 0.2s;
}

.resena-page .form-field textarea:focus {
    outline: none;
    border-color: var(--rose-mauve);
}

.char-counter {
    text-align: right;
    color: var(--text-soft);
    font-size: 0.75rem;
    margin: 0.5rem 0 0 0;
}

/* ESTADO EXITO */
.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--rose-mauve);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 1.5rem;
}

@media (max-width: 600px) {
    .resena-wrapper {
        padding: 2rem 1.5rem;
    }

    .stars-input .star {
        font-size: 2rem;
    }
}

/* PANEL ADMIN */

.admin-body {
    background-color: var(--cream);
    min-height: 100vh;
}

.admin-header {
    background: linear-gradient(135deg, var(--rose-mauve-dark) 0%, var(--rose-mauve) 100%);
    color: var(--cream);
    padding: 3rem 0;
    margin-bottom: 3rem;
}

.admin-header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.admin-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--copper-soft);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.admin-header h1 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin: 0 0 0.5rem 0;
    font-weight: 500;
    color: var(--cream);
}

.admin-header h1 .script {
    font-family: var(--font-script);
    color: var(--copper-soft);
    font-size: 2.5rem;
}

.admin-subtitle {
    margin: 0;
    opacity: 0.85;
    font-size: 1rem;
}

.admin-header-logo {
    height: 90px;
    width: auto;
    opacity: 0.9;
}

.admin-main {
    padding-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.admin-section {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 1px solid var(--nude);
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(139, 74, 107, 0.06);
}

.admin-section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.25rem;
    border-bottom: 2px solid var(--cream);
}

.admin-section-header h2 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 500;
}

.badge {
    background: linear-gradient(135deg, var(--rose-mauve) 0%, var(--copper) 100%);
    color: var(--white);
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    min-width: 32px;
    text-align: center;
}

.admin-loading,
.admin-empty {
    text-align: center;
    padding: 3rem;
    color: var(--text-soft);
    font-style: italic;
}

.admin-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.resena-card {
    border: 1px solid var(--nude);
    border-radius: 1rem;
    padding: 1.75rem;
    background-color: var(--cream-light);
    transition: transform 0.2s, box-shadow 0.2s;
}

.resena-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 74, 107, 0.08);
}

.resena-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.resena-cliente {
    margin: 0;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.15rem;
    font-family: var(--font-serif);
}

.resena-servicio {
    color: var(--copper);
    font-size: 0.8rem;
    margin: 0.25rem 0 0 0;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
}

.resena-stars {
    color: var(--copper);
    font-size: 1.35rem;
    letter-spacing: 0.1em;
}

.resena-stars .empty {
    color: var(--nude);
}

.resena-comentario {
    color: var(--text-dark);
    line-height: 1.7;
    margin: 1rem 0;
    font-style: italic;
    font-size: 1.05rem;
}

.resena-fecha {
    color: var(--text-soft);
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.resena-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}

.btn-aprobar {
    background: linear-gradient(135deg, var(--rose-mauve) 0%, var(--rose-mauve-dark) 100%);
    color: var(--white);
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.875rem;
}

.btn-aprobar:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(139, 74, 107, 0.25);
}

.btn-rechazar {
    background-color: transparent;
    color: var(--text-soft);
    border: 1.5px solid var(--nude);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.875rem;
}

.btn-rechazar:hover {
    background-color: var(--nude);
    color: var(--text-dark);
}

.btn-eliminar {
    background-color: transparent;
    color: #c0392b;
    border: 1.5px solid #e8c5c5;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.875rem;
}

.btn-eliminar:hover {
    background-color: #c0392b;
    color: white;
    border-color: #c0392b;
}

.resena-publicada {
    border-left: 4px solid var(--rose-mauve);
}

@media (max-width: 768px) {
    .admin-header-inner {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .admin-header h1 {
        font-size: 2rem;
    }

    .admin-header-logo {
        height: 70px;
    }

    .admin-section {
        padding: 1.5rem;
    }
}

/* SECCION DE RESEÑAS EN HOME */

.resenas-section {
    padding: 5rem 0;
    background-color: var(--cream-light);
}

.resenas-section h2 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.resenas-section .lead {
    text-align: center;
    margin-bottom: 3rem;
}

.resenas-section .eyebrow {
    text-align: center;
}

.resenas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.resenas-loading {
    text-align: center;
    color: var(--text-soft);
    grid-column: 1 / -1;
}

.resena-publica {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--nude);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.resena-publica:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(139, 74, 107, 0.12);
}

.resena-publica::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 1.5rem;
    font-family: var(--font-serif);
    font-size: 4rem;
    color: var(--copper);
    line-height: 1;
}

.resena-publica .stars {
    color: var(--copper);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0.1em;
}

.resena-publica .comentario {
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
    font-style: italic;
}

.resena-publica .footer-resena {
    border-top: 1px solid var(--nude);
    padding-top: 1rem;
}

.resena-publica .cliente {
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
    font-size: 0.95rem;
}

.resena-publica .servicio {
    color: var(--copper);
    font-size: 0.8rem;
    margin: 0.25rem 0 0 0;
    letter-spacing: 0.05em;
}

/* PAGINA REAGENDAR */

.reagendar-page {
    padding-top: 2rem;
    padding-bottom: 4rem;
    min-height: 60vh;
}

.reagendar-state {
    width: 100%;
}

.reagendar-wrapper {
    max-width: 600px;
    margin: 2rem auto;
    background-color: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 1.5rem;
    border: 1px solid var(--nude);
    text-align: center;
}

.reagendar-wrapper-wide {
    max-width: 1100px;
    margin: 2rem auto;
}

.reagendar-wrapper h1,
.reagendar-wrapper-wide h1 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.reagendar-header {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 1.25rem 1.25rem 0 0;
    border: 1px solid var(--nude);
    border-bottom: none;
    text-align: center;
}

.reagendar-header .eyebrow {
    color: var(--copper);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.reagendar-header .lead {
    color: var(--text-soft);
    margin-bottom: 0.25rem;
}

.lead-small {
    color: var(--text-soft);
    font-size: 0.9rem;
    margin: 0;
}

.reagendar-contenido {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 1.5rem;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 0 0 1.25rem 1.25rem;
    border: 1px solid var(--nude);
    border-top: none;
}

.reagendar-selection h2 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.reagendar-summary {
    background-color: var(--cream-light);
    padding: 1.75rem;
    border-radius: 1rem;
    align-self: start;
    position: sticky;
    top: 100px;
}

.reagendar-summary h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--nude);
    font-weight: 500;
}

.reagendar-summary .btn {
    width: 100%;
    margin-top: 1.5rem;
}

.warning-text {
    color: var(--copper);
    font-size: 0.8rem;
    margin-top: 1rem;
    line-height: 1.5;
}

.exito-resumen {
    background-color: var(--cream-light);
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin: 1.5rem 0;
    text-align: left;
}

.exito-resumen p {
    margin: 0.5rem 0;
}

@media (max-width: 900px) {
    .reagendar-contenido {
        grid-template-columns: 1fr;
    }

    .reagendar-summary {
        position: static;
        order: -1;
    }
}

/* PANTALLA DE LOGIN ADMIN */

.login-screen {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.login-box {
    background-color: var(--white);
    padding: 3.5rem 3rem;
    border-radius: 2rem;
    border: 1px solid var(--nude);
    text-align: center;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(139, 74, 107, 0.15);
}

.login-logo {
    width: 110px;
    height: auto;
    margin-bottom: 1.5rem;
}

.login-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.login-box h1 {
    font-family: var(--font-serif);
    font-size: 1.85rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.login-box p {
    color: var(--text-soft);
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
}

.login-field {
    margin-bottom: 1rem;
}

.login-field input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1.5px solid var(--nude);
    border-radius: 0.75rem;
    background-color: var(--cream-light);
    font-size: 1rem;
    font-family: var(--font-sans);
    color: var(--text-dark);
    transition: all 0.2s;
    text-align: center;
}

.login-field input:focus {
    outline: none;
    border-color: var(--rose-mauve);
    background-color: var(--white);
}

.login-error {
    color: #c0392b;
    font-size: 0.85rem;
    margin-bottom: 1rem !important;
}

.login-box .btn {
    width: 100%;
    padding: 1rem 2rem;
}

/* APARTADO FONDO DECORATIVO */

body {
    position: relative;
    overflow-x: hidden;
}

.blob {
    position: fixed;
    border-radius: 50% 40% 60% 50% / 50% 60% 40% 50%;
    filter: blur(70px);
    z-index: -1;
    pointer-events: none;
}

.blob-1 {
    width: 550px;
    height: 550px;
    background-color: var(--copper);
    top: -120px;
    right: -120px;
    opacity: 0.55;
}

.blob-2 {
    width: 650px;
    height: 650px;
    background-color: var(--rose-mauve);
    top: 35%;
    left: -280px;
    opacity: 0.45;
}

.blob-3 {
    width: 500px;
    height: 500px;
    background-color: var(--copper-soft);
    bottom: 5%;
    right: -130px;
    opacity: 0.6;
}

.blob-4 {
    width: 400px;
    height: 400px;
    background-color: var(--rose-mauve);
    top: 70%;
    left: 30%;
    opacity: 0.3;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

@media (max-width: 768px) {
    .blob {
        filter: blur(55px);
    }

    .blob-1 { 
        width: 320px; height: 320px; }

    .blob-2 { 
        width: 380px; height: 380px; }

    .blob-3 { 
        width: 300px; height: 300px; }

    .blob-4 { 
        width: 250px; height: 250px; }
}

/* SPLASH SCREEN */

#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: splashFadeOut 0.8s ease 2.4s forwards;
}

.splash-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.splash-logo {
    max-width: 520px;
    width: 85%;
    height: auto;
    animation: splashLogoIn 1.3s ease forwards;
}

.splash-tagline {
    font-family: var(--font-script);
    font-size: 2.2rem;
    color: var(--rose-mauve);
    margin-top: -1rem;
    opacity: 0;
    animation: splashTaglineIn 1s ease 0.8s forwards;
}

.splash-loader {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.5rem;
    opacity: 0;
    animation: splashTaglineIn 0.6s ease 1.3s forwards;
}

.splash-loader span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--rose-mauve);
    animation: splashDot 1.4s ease-in-out infinite;
}

.splash-loader span:nth-child(2) {
    animation-delay: 0.2s;
}

.splash-loader span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes splashLogoIn {
    0% {
        opacity: 0;
        transform: scale(0.85) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes splashTaglineIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes splashDot {
    0%, 100% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.4);
        opacity: 1;
    }
}

@keyframes splashFadeOut {
    0% {
        opacity: 1;
        visibility: visible;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}

#splash-screen.hidden {
    display: none;
}

@media (max-width: 768px) {
    .splash-logo {
        max-width: 340px;
    }

    .splash-tagline {
        font-size: 1.6rem;
    }
}

/* MENU HAMBURGUESA */

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--cream);
    border-radius: 2px;
    transition: all 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    nav#main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--rose-mauve-dark);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        transition: right 0.35s ease;
        z-index: 100;
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.2);
    }

    nav#main-nav.open {
        right: 0;
    }

    nav#main-nav ul {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }

    nav#main-nav a {
        font-size: 1rem;
    }
}

/* APARTADO BANNER DE CATEGORIA EN SERVICIOS */

.category-banner {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 1.5rem;
    overflow: hidden;
    margin: 3rem 0 2rem;
    box-shadow: 0 8px 32px rgba(139, 74, 107, 0.12);
}

.category-banner:first-of-type {
    margin-top: 0;
}

.category-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.category-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 74, 107, 0.75) 0%, rgba(165, 107, 130, 0.55) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-banner-overlay h3 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--white);
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .category-banner {
        height: 160px;
        border-radius: 1rem;
    }

    .category-banner-overlay h3 {
        font-size: 1.8rem;
    }
}

/* DESCRIPCIÓN EN TARJETAS DE PRODUCTO */

.product-descripcion {
    color: var(--text-soft);
    font-size: 0.82rem;
    line-height: 1.5;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
}

/* IMAGEN DE PRODUCTO (con foto real o placeholder) */

.product-image {
    background-color: var(--white);
    padding: 1.5rem;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    max-height: 100%;
    max-width: 100%;
}

.product-image.sin-imagen {
    background: linear-gradient(135deg, var(--cream) 0%, var(--nude) 100%);
    position: relative;
}

.product-image.sin-imagen::before {
    content: '✦';
    position: absolute;
    top: 38%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: var(--copper-soft);
    opacity: 0.6;
}

.product-image.sin-imagen::after {
    content: 'Imagen próximamente';
    position: absolute;
    top: 56%;
    left: 50%;
    transform: translateX(-50%);
    color: var(--copper);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    white-space: nowrap;
}

/* MODAL DE TERMINOS Y CONDICIONES */

.link-terms {
    background: none;
    border: none;
    padding: 0;
    color: var(--rose-mauve);
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-family: inherit;
    font-size: inherit;
    transition: color 0.2s ease;
}

.link-terms:hover {
    color: var(--rose-mauve-dark);
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(43, 43, 43, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background-color: var(--white);
    border-radius: 1.5rem;
    max-width: 600px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(139, 74, 107, 0.3);
    transform: scale(0.92) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.modal-overlay.open .modal-box {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background-color: var(--cream-light);
    color: var(--rose-mauve-dark);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    z-index: 2;
}

.modal-close:hover {
    background-color: var(--rose-mauve);
    color: var(--white);
    transform: rotate(90deg);
}

.modal-header {
    padding: 2.5rem 2.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid var(--cream);
}

.modal-header .eyebrow {
    margin-bottom: 0.75rem;
}

.modal-header h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 500;
}

.modal-header h2 .script {
    font-family: var(--font-script);
    color: var(--rose-mauve);
    font-size: 2.4rem;
}

.modal-content {
    padding: 2rem 2.5rem;
}

.termino-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
    align-items: flex-start;
}

.termino-item:last-child {
    margin-bottom: 0;
}

.termino-numero {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rose-mauve) 0%, var(--rose-mauve-dark) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(139, 74, 107, 0.25);
}

.termino-texto h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--rose-mauve-dark);
    margin: 0 0 0.4rem 0;
    font-weight: 500;
}

.termino-texto p {
    color: var(--text-soft);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.modal-footer {
    padding: 1.5rem 2.5rem 2.5rem;
    text-align: center;
    border-top: 1px solid var(--cream);
}

.modal-footer .btn {
    min-width: 200px;
}

body.modal-abierto {
    overflow: hidden;
}

@media (max-width: 600px) {
    .modal-header {
        padding: 2rem 1.5rem 1rem;
    }

    .modal-header h2 {
        font-size: 1.6rem;
    }

    .modal-content {
        padding: 1.5rem;
    }

    .modal-footer {
        padding: 1.5rem;
    }

    .termino-item {
        gap: 1rem;
    }
}

/* HONEYPOT ANTI-SPAM (invisible para humanos) */

.honeypot-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

/* PESTAÑAS DEL PANEL ADMIN */
.admin-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--nude);
}

.admin-tab {
    background: none;
    border: none;
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
    color: var(--text-soft);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color 0.2s, border-color 0.2s;
}

.admin-tab:hover { color: var(--text-dark); }

.admin-tab.active {
    color: var(--copper);
    border-bottom-color: var(--copper);
    font-weight: 500;
}

.admin-tab-content { display: none; }
.admin-tab-content.active { display: block; }

/* LISTA DE SERVICIOS EN EL ADMIN */
.servicios-admin-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.servicio-card {
    background-color: var(--white);
    border: 1px solid var(--nude);
    border-radius: 1rem;
    padding: 1.5rem;
}

.servicio-inactivo { opacity: 0.55; }

.servicio-titulo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.servicio-titulo h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 500;
}

.servicio-categoria {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--copper);
    background-color: var(--cream-light);
    padding: 0.2rem 0.6rem;
    border-radius: 1rem;
}

.servicio-badge-off {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #b04a4a;
    background-color: #f7e3e3;
    padding: 0.2rem 0.6rem;
    border-radius: 1rem;
}

.servicio-desc {
    color: var(--text-soft);
    font-size: 0.95rem;
    margin: 0 0 0.5rem 0;
    line-height: 1.5;
}

.servicio-meta {
    color: var(--text-dark);
    font-weight: 500;
    margin: 0;
}

/* BOTONES EXTRA */
.btn-small { padding: 0.5rem 1rem; font-size: 0.85rem; }

/* ENCABEZADO CON BOTÓN */
.admin-section-titulo { display: flex; align-items: center; gap: 0.75rem; }

/* ACCIONES EN TARJETA DE SERVICIO */
.servicio-acciones {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}
.servicio-acciones button {
    background: none;
    border: 1px solid var(--nude);
    border-radius: 0.6rem;
    padding: 0.45rem 0.9rem;
    font-size: 0.85rem;
    color: var(--text-soft);
    cursor: pointer;
    transition: all 0.2s;
}
.servicio-acciones button:hover { border-color: var(--copper); color: var(--copper); }
.btn-eliminar-servicio { color: #b04a4a; border-color: #e7c4c4; }
.btn-eliminar-servicio:hover { background-color: #f7e3e3; color: #b04a4a; }

/* MODAL DE SERVICIO */
.servicio-modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(60, 40, 35, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    z-index: 1000;
}
.servicio-modal-box {
    background-color: var(--white);
    border-radius: 1.25rem;
    padding: 2rem;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
}
.servicio-modal-box h2 {
    font-family: var(--font-serif);
    color: var(--text-dark);
    margin: 0 0 1.5rem 0;
    font-weight: 500;
}

/* FORMULARIO DEL MODAL DE SERVICIO */
.servicio-modal-box .form-grupo {
    margin-bottom: 1.25rem;
}

.servicio-modal-box label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.servicio-modal-box input,
.servicio-modal-box select,
.servicio-modal-box textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1.5px solid var(--nude);
    border-radius: 0.75rem;
    background-color: var(--cream-light);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text-dark);
    box-sizing: border-box;
    transition: all 0.2s;
}

.servicio-modal-box input:focus,
.servicio-modal-box select:focus,
.servicio-modal-box textarea:focus {
    outline: none;
    border-color: var(--rose-mauve);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(165, 107, 130, 0.12);
}

.servicio-modal-box textarea {
    resize: vertical;
    min-height: 90px;
}

.servicio-modal-box .form-fila {
    display: flex;
    gap: 1rem;
}

.servicio-modal-box .form-fila .form-grupo {
    flex: 1;
}

.servicio-modal-box .modal-acciones {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    margin-top: 1.5rem;
}