<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Variables CSS para consistencia */
:root {
    --primary-gold: #d4af37;
    --primary-gold-light: #e8c95a;
    --primary-gold-dark: #b8941f;
    --dark-bg: #0a0a0a;
    --card-bg: #1a1a1a;
    --card-bg-hover: #2a2a2a;
    --text-light: #ffffff;
    --text-gray: #cccccc;
    --text-dark: #888888;
    --shadow-light: rgba(212, 175, 55, 0.2);
    --shadow-heavy: rgba(0, 0, 0, 0.5);
    --accent-blue: #0a84ff;
    --accent-blue-light: #4da3ff;
    --text-color: #ffffff;
    --text-color-medium: #cccccc;
    --font-headings: 'Inter', sans-serif;
    --font-display: 'Bebas Neue', sans-serif;
    --primary-bg: #0a0a0a;
    --secondary-bg: #1a1a1a;
}

/* Remove outline focus styles */
*:focus {
    outline: none !important;
}

/* Remove tap highlight on mobile */
* {
    -webkit-tap-highlight-color: transparent;
}

/* Estilos generales de la sección */
.services-section {
    background: linear-gradient(to bottom, var(--primary-bg), var(--secondary-bg));
    padding: 120px 0 150px;
    position: relative;
    min-height: 100vh;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1622292620676-5e0c60ba785b?q=80&amp;w=2070&amp;auto=format');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.05;
    z-index: 0;
}

.services-container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Elementos flotantes decorativos */
.floating-razor {
    position: absolute;
    width: 150px;
    height: 150px;
    background-image: url('data:image/svg+xml;utf8,&lt;svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" fill="rgba(10, 132, 255, 0.08)"&gt;&lt;path d="M482.696 299.276l-32.61-18.827a55.976 55.976 0 0 0-48.544-4.441 36.71 36.71 0 0 0-9.793-11.337 52.565 52.565 0 0 0-1.705-1.515c-7.933-6.891-18.086-10.568-28.231-10.568-5.339 0-10.679.969-15.824 2.972-14.883 5.834-25.031 19.482-26.768 35.946-43.487 4.848-72.062 22.861-90.18 56.864V-40H80v352h-8c-26.51 0-48 21.49-48 48v64c0 26.51 21.49 48 48h352c26.51 0 48-21.49 48-48v-64c0-19.461-11.656-36.308-28.304-43.724zM352 32c0-8.837 7.163-16 16-16h32c8.837 0 16 7.163 16 16v224c0 8.837-7.163 16-16 16h-32c-8.837 0-16-7.163-16-16V32zm111.16 325.939l-12.475 25.479a7.995 7.995 0 0 1-4.421 3.925v-.606c0-26.51-21.49-48-48-48H224c-10.672 0-19.609-9.777-17.531-21.055 2.669-14.717 14.821-27.112 30.733-30.515 15.064-3.212 30.136 1.956 37.778 13.544 2.865 4.35 8.599 5.744 13.326 3.306 7.236-3.73 15.122-6.27 23.418-7.753 15.647-2.777 30.907-.184 43.312 7.242 5.439 3.254 9.914 7.13 13.112 11.477 2.861 3.891 3.998 8.073 3.284 12.335-1.069 6.395 3.12 12.501 9.405 12.501 5.759 0 10.618-4.323 10.767-9.941.153-5.585-2.478-10.778-7.05-14.725a38.873 38.873 0 0 0-5.519-4.099 58.484 58.484 0 0 1 17.727 3.86c2.18.795 4.282 1.756 6.29 2.883 7.369 4.134 11.628 8.384 11.628 15.133z"/&gt;&lt;/svg&gt;');
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: -1;
}

.floating-razor:nth-child(1) {
    top: 10%;
    left: 5%;
    animation: float-rotate 25s infinite alternate ease-in-out;
}

.floating-razor:nth-child(2) {
    bottom: 20%;
    right: 5%;
    transform: rotate(180deg);
    animation: float-rotate-reverse 30s infinite alternate ease-in-out;
}

@keyframes float-rotate {
    0% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-30px) rotate(10deg); }
    100% { transform: translateY(0) rotate(0); }
}

@keyframes float-rotate-reverse {
    0% { transform: translateY(0) rotate(180deg); }
    50% { transform: translateY(-20px) rotate(190deg); }
    100% { transform: translateY(0) rotate(180deg); }
}

/* Sección de introducción */
.services-intro {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards 0.2s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-intro h1 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--text-color);
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.services-intro h1:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
    border-radius: 3px;
    transform: scaleX(0.8);
    opacity: 0;
    animation: expandLine 1s forwards 0.8s;
}

@keyframes expandLine {
    to {
        transform: scaleX(1);
        opacity: 1;
    }
}

.services-intro p {
    font-size: 1.05rem;
    color: var(--text-color-medium);
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Tarjetas de servicios mejoradas */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-card {
    background: linear-gradient(145deg, #1c1c24, #16161c);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 20px rgba(10, 132, 255, 0.1);
}

/* Cabecera del servicio */
.service-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

/* Información del servicio */
.service-info {
    display: flex;
    align-items: center;
    flex: 1;
}

/* Iconos de servicio */
.service-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
    margin-right: 20px;
    border-radius: 10px;
    background: rgba(10, 132, 255, 0.1);
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(10, 132, 255, 0.2);
}

/* Título del servicio */
.service-title {
    color: var(--text-color);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: var(--font-headings);
}

/* Precio del servicio alineado */
.service-price {
    color: var(--accent-blue);
    font-weight: 700;
    font-family: var(--font-headings);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    margin-right: 20px;
    white-space: nowrap;
}

.price-from {
    font-size: 0.9rem;
    margin-right: 5px;
    opacity: 0.8;
}

/* Botón de toggle */
.service-toggle {
    color: var(--text-color-medium);
    transition: transform 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    flex-shrink: 0;
}

.service-toggle.active {
    transform: rotate(180deg);
    background: rgba(10, 132, 255, 0.1);
    color: var(--accent-blue);
}

/* Contenido expandible del servicio */
.service-content {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.service-content-inner {
    padding: 25px 30px;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
}

.service-content.active .service-content-inner {
    opacity: 1;
    transform: translateY(0);
}

/* Descripción del servicio */
.service-description {
    color: var(--text-color-medium);
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.7;
}

/* Acciones de servicio */
.service-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

/* Duración del servicio */
.service-duration {
    color: var(--text-color-medium);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-right: 20px;
}

.service-duration i {
    margin-right: 8px;
    color: var(--accent-blue);
    font-size: 1.1rem;
}

/* Botón "Leer más" para servicios */
.learn-more-service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-color-medium);
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.learn-more-service-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: 0.5s;
}

.learn-more-service-btn:hover {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 132, 255, 0.2);
}

.learn-more-service-btn:hover::before {
    left: 100%;
}

.learn-more-service-btn i {
    font-size: 0.8rem;
}

/* Botón de reserva mejorado */
.book-btn {
    background-color: var(--accent-blue);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 28px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-family: var(--font-headings);
    box-shadow: 0 5px 15px rgba(10, 132, 255, 0.3);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

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

.book-btn:hover {
    background-color: var(--accent-blue-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(10, 132, 255, 0.4);
}

.book-btn:hover::after {
    left: 100%;
}

/* Opciones adicionales del servicio */
.service-options {
    margin-top: 20px;
}

.options-title {
    font-size: 1.05rem;
    color: var(--text-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.options-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

.option-item {
    color: var(--text-color-medium);
    font-size: 0.95rem;
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.option-item i {
    color: var(--accent-blue);
    margin-right: 10px;
    font-size: 0.85rem;
}

/* Estilizado especial para servicio premium */
.service-premium {
    border: 1px solid rgba(10, 132, 255, 0.2);
    background: linear-gradient(145deg, #1d1d26, #17171d);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    position: relative;
}

.service-premium .service-header {
    background: linear-gradient(90deg, rgba(10, 132, 255, 0.08), rgba(10, 132, 255, 0.02));
}

.service-premium .service-icon {
    background: rgba(10, 132, 255, 0.15);
    color: var(--accent-blue-light);
}

/* Badge de premium */
.service-premium::before {
    content: 'RECOMENDADO';
    position: absolute;
    top: 15px;
    right: -35px;
    background: var(--accent-blue);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 30px;
    transform: rotate(45deg);
    z-index: 3;
    box-shadow: 0 2px 10px rgba(10, 132, 255, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .service-header {
        flex-wrap: wrap;
        padding: 20px;
    }
    
    .service-info {
        margin-bottom: 15px;
        width: 100%;
    }
    
    .service-price {
        margin-left: auto;
        margin-right: 15px;
    }
    
    .service-content-inner {
        padding: 20px;
    }
    
    .service-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .service-duration {
        margin-bottom: 15px;
        margin-right: 0;
    }
    
    .book-btn {
        width: 100%;
        text-align: center;
    }
    
    .options-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .service-header {
        padding: 15px;
    }
    
    .service-content-inner {
        padding: 15px;
    }
    
    .service-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        margin-right: 10px;
    }
    
    .service-title {
        font-size: 1.1rem;
    }
    
    .service-price {
        font-size: 1.2rem;
    }
}

/* Modal de información de servicio */
.service-info-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.service-info-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: linear-gradient(145deg, #1a1a1f, #0f0f12);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.service-info-modal.active .modal-content {
    transform: translate(-50%, -50%) scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    font-family: var(--font-headings);
}

.close-btn {
    background: none;
    border: none;
    color: var(--text-color-medium);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-blue);
}

.modal-body {
    padding: 30px;
}

.service-description {
    color: var(--text-color-medium);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.modal-body h4 {
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-details {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.service-details li {
    color: var(--text-color-medium);
    font-size: 0.95rem;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.service-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: bold;
}

.service-technique {
    color: var(--text-color-medium);
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.modal-actions {
    text-align: center;
}

.reserve-modal-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--accent-blue);
    color: white;
    padding: 14px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(10, 132, 255, 0.4);
}

.reserve-modal-btn:hover {
    background: var(--accent-blue-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(10, 132, 255, 0.5);
}

/* Responsive para el modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 85vh;
    }
    
    .modal-header {
        padding: 20px 25px;
    }
    
    .modal-header h3 {
        font-size: 1.3rem;
    }
    
    .modal-body {
        padding: 25px;
    }
    
    .service-description {
        font-size: 0.95rem;
    }
    
    .modal-body h4 {
        font-size: 1rem;
    }
    
    .service-details li {
        font-size: 0.9rem;
    }
    
    .service-technique {
        font-size: 0.9rem;
        padding: 12px;
    }
}
</pre></body></html>