/* ==================== */
/* ESTILOS GENERALES CON GLASSMORPHISM */
/* ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
}

body {
    background-image: url('/static/img/fondo4N.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* ==================== */
/* ENCABEZADO CON GLASSMORPHISM */
/* ==================== */
header {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    margin-bottom: 30px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 0 25px rgba(255, 255, 255, 0.4),
        0 0 50px rgba(255, 255, 255, 0.2),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

header:hover {
    box-shadow: 
        0 0 35px rgba(255, 255, 255, 0.6),
        0 0 70px rgba(255, 255, 255, 0.3),
        inset 0 0 30px rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #ffffff;
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(255, 255, 255, 0.5);
    animation: white-glow 2.5s ease-in-out infinite alternate;
}

@keyframes white-glow {
    from {
        text-shadow: 0 0 8px rgba(255, 255, 255, 0.7),
                     0 0 15px rgba(255, 255, 255, 0.5);
    }
    to {
        text-shadow: 0 0 12px rgba(255, 255, 255, 0.9),
                     0 0 25px rgba(255, 255, 255, 0.7),
                     0 0 35px rgba(255, 255, 255, 0.4);
    }
}

.subtitle {
    font-size: 1.2rem;
    color: #a8d8ea;
    font-weight: 500;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

/* ==================== */
/* TARJETAS DE SERVICIOS CON GLASSMORPHISM */
/* ==================== */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.service-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 0 25px rgba(255, 255, 255, 0.4),
        0 0 50px rgba(255, 255, 255, 0.2),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    position: relative;
}

.service-card:hover {
    transform: translateY(-15px) translateZ(50px) rotateX(5deg) rotateY(5deg);
    box-shadow: 
        0 20px 40px rgba(255, 255, 255, 0.3),
        0 0 60px rgba(255, 255, 255, 0.6),
        0 0 100px rgba(255, 255, 255, 0.4),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.8);
}

.service-header {
    padding: 25px 25px 20px;
    background: rgba(44, 125, 160, 0.3);
    backdrop-filter: blur(10px);
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.service-icon {
    font-size: 2.5rem;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.9);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.2) translateZ(20px);
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 1));
}

.service-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.service-content {
    padding: 25px;
}

.service-subtitle {
    font-size: 1.2rem;
    color: #a8d8ea;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.service-list {
    list-style-type: none;
}

.service-item {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 8px;
}

.service-item:last-child {
    border-bottom: none;
}

.service-item i {
    color: #a8d8ea;
    font-size: 1.1rem;
    margin-top: 4px;
    flex-shrink: 0;
    text-shadow: 0 0 8px rgba(168, 216, 234, 0.7);
    animation: pulse 2s infinite;
}

.service-item-content {
    flex: 1;
}

.service-item-title {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.service-item-desc {
    color: #e9ecef;
    font-size: 0.95rem;
}

/* ==================== */
/* SECCIÓN DE INVIERNO CON GLASSMORPHISM */
/* ==================== */
.winter-services {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 40px;
    margin-top: 20px;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 0 25px rgba(255, 255, 255, 0.4),
        0 0 50px rgba(255, 255, 255, 0.2),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.winter-services:hover {
    box-shadow: 
        0 0 35px rgba(255, 255, 255, 0.6),
        0 0 70px rgba(255, 255, 255, 0.3),
        inset 0 0 30px rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.winter-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.winter-icon {
    font-size: 2.8rem;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.9);
    animation: pulse 2s infinite;
}

.winter-title {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.winter-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.winter-service {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.winter-service:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.winter-service-title {
    font-size: 1.4rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.7);
}

.winter-service-title i {
    font-size: 1.6rem;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.9);
}

.winter-service-list {
    list-style-type: none;
}

.winter-service-item {
    padding: 10px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    transition: all 0.3s ease;
}

.winter-service-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px 8px;
}

.winter-service-item i {
    color: #a8d8ea;
    margin-top: 4px;
    flex-shrink: 0;
    text-shadow: 0 0 8px rgba(168, 216, 234, 0.7);
    animation: pulse 2s infinite;
}
/* ==================== */
/* FOOTER - REMOVIDO */
/* ==================== */
/* Todos los estilos del footer han sido eliminados según solicitud */


/* ==================== */
/* RESPONSIVE */
/* ==================== */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    
    .service-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .services-container {
        grid-template-columns: 1fr;
    }
    
    .winter-content {
        grid-template-columns: 1fr;
    }
    
    .winter-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    .service-title {
        font-size: 1.4rem;
    }
    
    .winter-title {
        font-size: 1.6rem;
    }
    
    .service-content, .winter-service {
        padding: 20px;
    }
}
