/* Paleta de colores K-Beauty profesional */
:root {
    /* Colores base especificados */
    --color-primary: #83B2A8; /* Turquesa principal */
    --color-secondary: #70685B; /* Lila principal */
    --color-accent: #D6D8CD; /* Blanco cálido especificado */
    
    /* Variaciones de colores principales con toque LGBT */
    --color-primary-light: #A8C8BE;
    --color-primary-dark: #6B9A8F;
    --color-secondary-light: #9B7CB8; /* Más violeta/lila vibrante */
    --color-secondary-dark: #5A5248;
    
    /* Colores LGBT complementarios */
    --color-lgbt-pink: #E91E63;
    --color-lgbt-purple: #9C27B0;
    --color-lgbt-blue: #2196F3;
    --color-lgbt-teal: #00BCD4;
    
    /* Colores de apoyo basados en Lila y Turquesa */
    --color-light: #F7F8F8; /* Muy claro basado en turquesa */
    --color-soft: #F2F3F3; /* Suave basado en turquesa */
    --color-warm: #F6F5F4; /* Cálido basado en lila */
    
    /* Colores neutros */
    --color-white: #ffffff;
    --color-black: #1a1a1a;
    --color-gray: #f8f9f8;
    --color-dark-gray: #2d2d2d;
    --color-medium-gray: #6b7280;
    --color-text: #2d2d2d;
    
    /* Fuentes modernas y legibles */
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Montserrat', sans-serif;
    
    /* Espaciado y diseño */
    --container-max-width: 1200px;
    --section-padding: 5rem 0;
    --border-radius: 12px;
    --shadow-light: 0 4px 20px rgba(112, 104, 91, 0.08);
    --shadow-medium: 0 8px 30px rgba(112, 104, 91, 0.12);
}

/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-secondary);
    background-color: var(--color-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--color-secondary);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

h2:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-secondary) 0%, var(--color-secondary-light) 100%);
    bottom: -10px;
    left: 25%;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--color-secondary);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--color-primary);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 5rem 0;
}

/* Botones */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-lgbt-purple) 100%);
    color: var(--color-white);
    font-weight: 600;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-lgbt-purple) 0%, var(--color-lgbt-pink) 100%);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(155, 124, 184, 0.4);
}

.btn-secondary {
    background-color: var(--color-primary);
    color: var(--color-white);
    font-weight: 600;
}

.btn-secondary:hover {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(131, 178, 168, 0.3);
}

/* Header y Navegación */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(248, 249, 248, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(74, 93, 86, 0.15);
    transition: all 0.3s ease;
}

header.scrolled {
    background: linear-gradient(135deg, 
        rgba(131, 178, 168, 0.95) 0%, 
        rgba(112, 104, 91, 0.95) 100%);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

header.scrolled .nav-links a {
    color: var(--color-white);
}

header.scrolled .nav-links a:hover {
    color: var(--color-accent);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 15px;
}

.logo {
    max-width: 280px;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 10px;
    background: linear-gradient(45deg, 
        #70685B, #83B2A8, #70685B, #83B2A8);
    background-size: 400% 400%;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
    animation: subtle-rainbow 8s ease-in-out infinite;
}

.logo:hover::after {
    opacity: 0.3;
}

.logo img {
    max-height: 100px;
    position: relative;
    z-index: 1;
    border-radius: 8px;
}

@keyframes subtle-rainbow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    font-family: var(--font-secondary);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    position: relative;
    color: var(--color-secondary);
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--color-secondary);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--color-secondary-dark);
}

.nav-links a:hover:after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background: rgba(112, 104, 91, 0.1);
}

header.scrolled .menu-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
}

header.scrolled .bar {
    background-color: var(--color-white);
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--color-secondary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Animaciones del menú hamburguesa */
.bar.rotate-45 {
    transform: rotate(45deg) translate(6px, 6px);
}

.bar.opacity-0 {
    opacity: 0;
}

.bar.rotate-negative-45 {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Nueva Sección Hero */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(112, 104, 91, 0.7) 0%, rgba(131, 178, 168, 0.6) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    text-align: center;
    color: var(--color-white);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
}

.btn-cta {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-lgbt-teal) 100%);
    color: var(--color-white);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(131, 178, 168, 0.3);
}

.btn-cta:hover {
    background: linear-gradient(135deg, var(--color-lgbt-teal) 0%, var(--color-lgbt-blue) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(33, 150, 243, 0.4);
}

/* Categorías de Servicios */
.categorias {
    padding: var(--section-padding);
    background: var(--color-light);
}

.categorias h2 {
    text-align: center;
    color: var(--color-secondary);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.categorias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.categoria-card {
    background: var(--color-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.categoria-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.categoria-image {
    height: 200px;
    overflow: hidden;
}

.categoria-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.categoria-card:hover .categoria-image img {
    transform: scale(1.05);
}

.categoria-content {
    padding: 1.5rem;
    text-align: center;
}

.categoria-content h3 {
    color: var(--color-text);
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.categoria-content p {
    color: var(--color-medium-gray);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.btn-outline {
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    background: transparent;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* Tratamientos - Diseño limpio sin descripciones */
.tratamientos {
    background: linear-gradient(135deg, var(--color-warm) 0%, var(--color-light) 100%);
    text-align: center;
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

/* Clases eliminadas - ahora se usan las unificadas de servicio-* */

/* Paquetes de Tratamientos - Diseño simple y funcional */
.tratamientos {
    background: var(--color-white);
    text-align: center;
    padding: var(--section-padding) 0;
}

.tratamientos .container {
    max-width: 100%;
    width: 100%;
    padding: 0 2rem;
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.treatment-card {
    background: var(--color-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(112, 104, 91, 0.08);
    transition: all 0.3s ease;
    border: 2px solid var(--color-soft);
    display: flex;
    flex-direction: column;
}

.treatment-card:hover {
    border-color: var(--color-secondary-light);
    box-shadow: 0 4px 12px rgba(112, 104, 91, 0.12);
}

.treatment-header {
    background: linear-gradient(135deg, var(--color-secondary-light) 0%, var(--color-secondary) 100%);
    padding: 1.5rem;
    display: flex;
    align-items: center;
}

.treatment-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.treatment-icon svg {
    width: 30px;
    height: 30px;
    color: var(--color-white);
}

.treatment-title {
    flex: 1;
}

.treatment-title h3 {
    color: var(--color-white);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.treatment-details {
    display: flex;
    gap: 1rem;
}

.duration, .sessions {
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.treatment-description {
    padding: 1.5rem;
    flex: 1;
    text-align: left;
}

.treatment-description p {
    color: var(--color-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

.treatment-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--color-soft);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
}

.price {
    font-weight: 700;
    color: var(--color-secondary);
    font-size: 1.4rem;
    margin-bottom: 0;
}

.package-type {
    font-size: 0.8rem;
    color: var(--color-secondary-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.treatment-footer .btn {
    white-space: nowrap;
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
}

.duration {
    display: block;
    font-size: 0.9rem;
    color: var(--color-primary);
    margin-top: 0.5rem;
    font-weight: 500;
}



/* Nosotros */
.nosotros {
    background: linear-gradient(135deg, var(--color-warm) 0%, var(--color-light) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    text-align: left;
}

.about-text h2:after {
    left: 0;
    width: 70px;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Contacto */
.contacto {
    background: linear-gradient(135deg, var(--color-light) 0%, var(--color-warm) 100%);
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    text-align: left;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.info-item i,
.info-item svg {
    font-size: 1.5rem;
    color: var(--color-secondary);
    margin-right: 1rem;
    min-width: 20px;
    width: 20px;
    height: 20px;
}

.contact-form {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-secondary);
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

/* Footer Simplificado */
.footer-simple {
    background: var(--color-secondary);
    color: var(--color-white);
    padding: 3rem 0 1.5rem;
}

.footer-simple .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 2rem;
}

.footer-info {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.4;
}

.contact-info strong {
    font-weight: 600;
}

.social-links a {
    color: var(--color-white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--color-primary);
    transform: scale(1.1);
}

.footer-cta .btn-cta {
    background: var(--color-primary);
    padding: 0.8rem 2rem;
    font-size: 0.95rem;
}

.footer-cta .btn-cta:hover {
    background: var(--color-primary-dark);
}

.footer-simple .footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .footer-simple .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-info {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* Media Queries para Responsividad */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text {
        order: 2;
    }
    
    .about-image {
        order: 1;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .logo {
        max-width: 220px;
    }
    
    .logo img {
        max-height: 80px;
    }
    
    header .container {
        padding: 0.7rem 15px;
    }
    
    .nav-links {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: linear-gradient(135deg, 
            rgba(131, 178, 168, 0.95) 0%, 
            rgba(112, 104, 91, 0.95) 100%);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 3rem;
        transition: all 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 2rem 0;
        transform: translateY(20px);
        opacity: 0;
        transition: all 0.3s ease;
    }
    
    .nav-links.active li {
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.4s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.5s; }
    
    .nav-links a {
        color: var(--color-white);
        font-size: 1.2rem;
        font-weight: 600;
        padding: 1rem 2rem;
        border-radius: 25px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(5px);
        transition: all 0.3s ease;
    }
    
    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(1.05);
        color: var(--color-white);
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    section {
        padding: 4rem 0;
    }
}

@media (max-width: 576px) {
    .logo {
        max-width: 180px;
    }
    
    .logo img {
        max-height: 70px;
    }
    
    header .container {
        padding: 0.6rem 15px;
    }
    
    .nav-links {
        top: 80px;
        height: calc(100vh - 80px);
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .services-grid,
    .treatments-slider {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        margin-bottom: 2rem;
    }
    
    .social-icons {
        justify-content: center;
    }
}/*
 Testimonios */
.testimonios {
    padding: var(--section-padding);
    background: var(--color-white);
}

.testimonios h2 {
    text-align: center;
    color: var(--color-secondary);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.testimonios-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    height: 250px;
}

.testimonio-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s ease;
}

.testimonio-card.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonio-content {
    background: var(--color-soft);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
}

.testimonio-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--color-secondary);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonio-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info h4 {
    color: var(--color-secondary);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.author-info span {
    color: var(--color-medium-gray);
    font-size: 0.9rem;
}

.rating span {
    color: #FFD700;
    font-size: 1.2rem;
}

.testimonios-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    gap: 1rem;
}

.prev-testimonial, .next-testimonial {
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.prev-testimonial:hover, .next-testimonial:hover {
    background: var(--color-primary-dark);
    transform: scale(1.1);
}

.testimonios-dots {
    display: flex;
    gap: 0.5rem;
}

.testimonios-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-medium-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonios-dots .dot.active {
    background: var(--color-primary);
    transform: scale(1.2);
}

/* Oferta Destacada */
.oferta-destacada {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-lgbt-purple) 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.oferta-destacada::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.02)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.oferta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.oferta-text h2 {
    color: var(--color-white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.oferta-text h3 {
    color: var(--color-white);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    opacity: 0.95;
}

.oferta-descripcion {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-white);
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 500px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.oferta-precio {
    display: flex;
    align-items: baseline;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.precio-especial {
    font-size: 2.4rem;
    color: var(--color-white);
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.precio-original {
    font-size: 1.5rem;
    text-decoration: line-through;
    opacity: 0.7;
    color: var(--color-white);
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.oferta-text .btn-cta {
    background: var(--color-white);
    color: var(--color-secondary);
    border: 2px solid var(--color-white);
    font-weight: 600;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.oferta-text .btn-cta:hover {
    background: transparent;
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.oferta-image {
    text-align: center;
    position: relative;
}

.oferta-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 20px;
    z-index: -1;
}

.oferta-image img {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.oferta-image:hover img {
    transform: scale(1.02);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .categorias-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .oferta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .testimonio-content {
        padding: 1.5rem;
    }
    
    .testimonios-carousel {
        height: auto;
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .categorias h2, .testimonios h2 {
        font-size: 2rem;
    }
    
    .btn-cta {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}/* Servicios Detallados */
.servicios-detallados {
    padding: var(--section-padding);
    background: linear-gradient(135deg, 
        rgba(131, 178, 168, 0.1) 0%, 
        rgba(155, 124, 184, 0.1) 25%,
        rgba(33, 150, 243, 0.1) 50%,
        rgba(0, 188, 212, 0.1) 75%,
        rgba(233, 30, 99, 0.1) 100%);
}

.servicios-detallados h2 {
    text-align: center;
    color: var(--color-secondary);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

/* Cards de Servicios Unificadas - Diseño Moderno */
.servicio-card {
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-soft) 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(112, 104, 91, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    background-clip: padding-box;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.servicio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-secondary) 0%, var(--color-secondary-light) 50%, var(--color-primary) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.servicio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(112, 104, 91, 0.2);
    border-color: var(--color-secondary-light);
}

.servicio-card:hover::before {
    opacity: 1;
}

.servicio-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    flex-shrink: 0;
}

.servicio-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(112, 104, 91, 0.25);
    transition: all 0.4s ease;
    position: relative;
}

.servicio-icon::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--color-secondary-light), var(--color-primary));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.servicio-card:hover .servicio-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(112, 104, 91, 0.35);
}

.servicio-card:hover .servicio-icon::after {
    opacity: 1;
}

.servicio-icon svg {
    width: 40px;
    height: 40px;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.servicio-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.duracion {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-light) 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 15px rgba(112, 104, 91, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.servicio-descripcion {
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
    text-align: center;
    opacity: 0.9;
    flex-grow: 1;
}

.servicio-footer {
    text-align: center;
    margin-top: auto;
    flex-shrink: 0;
}

.precio-info {
    margin-bottom: 1rem;
}

.precio {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(131, 178, 168, 0.3);
    display: block;
    margin-bottom: 0.5rem;
}

.tipo-precio {
    color: var(--color-medium-gray);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.btn-reservar {
    width: 100%;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-light) 100%);
    color: white;
    border: none;
    padding: 1.25rem 2rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(112, 104, 91, 0.3);
    flex-shrink: 0;
}

.btn-reservar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-reservar:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(112, 104, 91, 0.4);
    background: linear-gradient(135deg, var(--color-secondary-dark) 0%, var(--color-secondary) 100%);
}

.btn-reservar:hover::before {
    left: 100%;
}

/* Paquetes de Tratamientos - Mismo diseño que servicios */
.paquetes-tratamientos {
    padding: var(--section-padding);
    background: var(--color-light);
}

.paquetes-tratamientos h2 {
    text-align: center;
    color: var(--color-secondary);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.tratamientos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

/* Responsive para las secciones unificadas */
@media (max-width: 768px) {
    .servicios-grid,
    .tratamientos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .servicio-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .servicio-footer .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .servicios-detallados h2,
    .paquetes-tratamientos h2 {
        font-size: 2rem;
    }
    
    .servicio-header,
    .servicio-descripcion {
        padding: 1.5rem;
    }
    
    .servicio-footer {
        padding: 1.2rem 1.5rem;
    }
}

/* Botón flotante de WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Animación de flotación */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float a {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}
