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

        body {
            font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #2c3e50;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
             background-image: url('../recursos/patron.png');
        }

        .container {
         width: 100%;
            margin: 0 auto;
           
        }

        /* Banner Section */
        .banner {
            background-image: url('../recursos/pexels-kindelmedia-7054757.jpg');
            background-size: cover;
            background-position: center;    
            height: 300px;
            display: flex;
            align-items: center;
            justify-content:right;
        }
        .banner::before{
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 300px;
            background: rgba(0, 0, 0, 0.4); 
            z-index: 1;
        }
        .banner h1 {
            position: relative;
            color: white;
            font-size: 2.5em;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            margin-right: 50px;
          
            padding: 15px 25px;
            border-radius: 10px;
            font-family: oswald, sans-serif;
            padding-top: 150px;
            z-index: 2 ;
        }
    .banner h1::before {
    content: '';
    position: absolute;
    width: 5px;
    background: #f1c40f;
    top: 150px;      
    bottom: 0;
    left: -20px;     
    z-index: 2;     
    height: 30%;   
}
.banner h1 {
    
    opacity: 0;
    transform: translateX(100px); 
    animation: entradaDerecha 1s ease-out forwards;
}

@keyframes entradaDerecha {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
   /* Banner Sectio0n FIN */ 
        .header {
            padding: 15px 60px;
          
            position: relative;
            overflow: hidden;
            display: flex;
            gap: 6px;
            flex-direction: column;
             background-color: rgba(0, 0, 0, 0.885);

        }

        .conjunto{
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            gap: 30px;
        }
        
        .datos1{
        
            justify-content: left;
        }
        
        .tituloo{
            display: flex;
            flex-direction: column;
            align-items: center;   
            justify-content: center;
        }
        .tituloo h1 {
            font-size: 2.5em;
            font-weight: bold;
            color: #f1c40f;
            text-align: center;
        }

        .header .subtitle {
            font-size: 1.3em;
            font-weight: 300;
            opacity: 0.9;
            position: relative;
            z-index: 1;
        }

        .header .date {
            font-size: 0.95em;
            opacity: 0.8;
            margin-top: 5px;
            position: relative;
            z-index: 1;
            color: #f8f9fa;
        }

        
        .intro {
            font-size: 1.2em;
            color: #34495e;
           
            text-align: center;
            padding: 20px;
            background: linear-gradient(135deg, #fffceb 0%, #f0f9ff 100%);
            border-radius: 10px;
            border: 3px solid #f1c40f;
            max-width: 600px;
        }
      



        /* Títulos de requisitos */
.requirements-title {
    padding-top: 30px;
    font-size: 1.8em;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

/* Lista de requisitos */
/* Lista de requisitos con puntos */
.requirements-list {
    list-style: none; /* quitamos el estilo por defecto */
    max-width: 800px;
    margin: 0 auto 40px auto;
    padding: 0 20px;
}
.requirements-list li {
    position: relative;
    padding-left: 30px; /* espacio para el punto */
    margin-bottom: 12px;
    font-size: 1.05em;
    line-height: 1.6;
}

/* Punto personalizado */
.requirements-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    background-color: #f1c40f; 
    border-radius: 50%;
}

/* Nota importante */
.important-note {
    background: #fff8e5;
    border: 2px solid #f1c40f;
    padding: 20px;
    border-radius: 10px;
    max-width: 500px;
    max-height: 200px;
    margin: 0 auto 40px auto;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
}
.important-note h3 {
    color: #f1c40f;
    margin-bottom: 10px;
    font-size: 1.4em;
}
.important-note p {
    font-size: 1.05em;
    line-height: 1.6;
}

/* Sección de contacto */
.contact-section {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border-top: 3px solid #f1c40f;
}
.contact-section h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
}

/* Botones */
.action-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    font-size: 1em;
    transition: background 0.3s ease, transform 0.2s ease;
}
.btn i {
    font-size: 1.2em;
}

/* Botón WhatsApp con animación */
.btn-whatsapp {
    font-family: 'Open Sans', sans-serif;
    display: inline-block;
    position: relative;
    background-color: transparent;
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 3px solid #25D366;
    color: #25D366;
}
.btn-whatsapp::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #25D366;
    transform: translateX(-100%);
    transition: all .3s;
    z-index: -1;
}
.btn-whatsapp:hover {
    color: #fff;
}
.btn-whatsapp:hover::before {
    transform: translateX(0);
}

/* Botón Descargar con animación */
.btn-download {
    font-family: 'Open Sans', sans-serif;
    display: inline-block;
    position: relative;
    background-color: transparent;
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 3px solid #f1c40f;
    color: #f1c40f;
}
.btn-download::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #f1c40f;
    transform: translateX(-100%);
    transition: all .3s;
    z-index: -1;
}
.btn-download:hover {
    color: #2c3e50;
}
.btn-download:hover::before {
    transform: translateX(0);
}

/* Contenedor */
.main-content {
    display: flex;
    align-items: center;
    padding: 25px 60px;
    border-top: 3px solid #f1c40f;
    justify-content: center;
}


.requerimientos{
    max-width: 700px;
}

.derecha2{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

/* Media Queries para diseño responsive */

/* Tablets (768px y menos) */
@media (max-width: 768px) {
    /* Banner responsive */
    .banner {
        height: 250px;
        justify-content: center;
        
    }
    
    .banner::before {
        height: 250px;
    }
    
    .banner h1 {
        font-size: 2em;
        margin-right: 0;
        text-align: center;
        padding: 10px 20px;
        padding-top: 120px;
    }
    
    .banner h1::before {
        top: 120px;
        left: -15px;
        width: 4px;
    }
    
    /* Header responsive */
    .header {
        padding: 15px 30px;
    }
    
    .tituloo h1 {
        font-size: 2em;
    }
    
    .header .subtitle {
        font-size: 1.1em;
        text-align: center;
    }
    
    /* Main content responsive */
    .main-content {
        flex-direction: column;
        padding: 20px 30px;
        gap: 30px;
    }
    
    .requerimientos {
        max-width: 100%;
    }
    
    .requirements-title {
        font-size: 1.6em;
    }
    
    .requirements-list {
        padding: 0 15px;
    }
    
    .requirements-list li {
        font-size: 1em;
        margin-bottom: 15px;
    }
    
    /* Nota importante responsive */
    .important-note {
        max-width: 100%;
        max-height: none;
        margin: 0 0 30px 0;
    }
    
    .important-note h3 {
        font-size: 1.2em;
    }
    
    .important-note p {
        font-size: 1em;
    }
    
    /* Intro responsive */
    .intro {
        font-size: 1.1em;
        max-width: 100%;
        margin: 0 15px;
    }
    
    /* Botones responsive */
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-whatsapp,
    .btn-download {
        width: 100%;
        max-width: 300px;
        text-align: center;
        justify-content: center;
    }
}

/* Móviles (480px y menos) */
@media (max-width: 480px) {
    /* Banner móvil */
    .banner {
        height: 200px;
    }
    
    .banner::before {
        height: 200px;
    }
    
    .banner h1 {
        font-size: 1.6em;
        padding: 10px 15px;
        padding-top: 100px;
    }
    
    .banner h1::before {
        top: 100px;
        left: -10px;
        width: 3px;
    }
    
    /* Header móvil */
    .header {
        padding: 15px 20px;
    }
    
    .tituloo h1 {
        font-size: 1.8em;
    }
    
    .header .subtitle {
        font-size: 1em;
    }
    
    /* Main content móvil */
    .main-content {
        padding: 15px 20px;
    }
    
    .requirements-title {
        font-size: 1.4em;
        padding-top: 20px;
    }
    
    .requirements-list {
        padding: 0 10px;
    }
    
    .requirements-list li {
        font-size: 0.95em;
        padding-left: 25px;
        margin-bottom: 18px;
    }
    
    .requirements-list li::before {
        width: 8px;
        height: 8px;
        top: 8px;
    }
    
    /* Nota importante móvil */
    .important-note {
        padding: 15px;
    }
    
    .important-note h3 {
        font-size: 1.1em;
    }
    
    .important-note p {
        font-size: 0.95em;
    }
    
    /* Intro móvil */
    .intro {
        font-size: 1em;
        padding: 15px;
        margin: 0 10px;
    }
    
    /* Contact section móvil */
    .contact-section {
        padding: 30px 15px;
    }
    
    .contact-section h3 {
        font-size: 1.3em;
    }
    
    /* Botones móvil */
    .btn-whatsapp,
    .btn-download {
        padding: 10px 20px;
        font-size: 12px;
        width: 100%;
        max-width: 280px;
    }
    
    .derecha2 {
        gap: 15px;
    }
}

/* Móviles muy pequeños (360px y menos) */
@media (max-width: 360px) {
    .banner h1 {
        font-size: 1.4em;
        padding: 8px 12px;
        padding-top: 90px;
    }
    
    .banner h1::before {
        top: 90px;
    }
    
    .tituloo h1 {
        font-size: 1.6em;
    }
    
    .requirements-title {
        font-size: 1.2em;
    }
    
    .requirements-list li {
        font-size: 0.9em;
    }
    
    .important-note {
        padding: 12px;
    }
    
    .important-note h3 {
        font-size: 1em;
    }
    
    .important-note p {
        font-size: 0.9em;
    }
    
    .intro {
        font-size: 0.95em;
        padding: 12px;
    }
}

/* Ajustes adicionales para mejor experiencia móvil */
@media (max-width: 768px) {
    body {
        background-image: none; /* Quitar imagen de fondo en móviles para mejor rendimiento */
    }
    
    .conjunto {
        gap: 20px;
    }
    
    /* Mejorar legibilidad en móviles */
    .requirements-list li strong {
        display: inline-block;
        margin-bottom: 2px;
    }
    
    /* Espaciado mejorado */
    .derecha2 {
        width: 100%;
    }
    
    .btn-formulario {
        width: 100%;
        display: flex;
        justify-content: center;
    }
}