@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&family=Montserrat:wght@300;400;500&display=swap');

@font-face {
    font-family: 'Hatsch Sans';
    src: local('Arial Black'), local('Helvetica Bold'), local('sans-serif');
    font-weight: 800;
    font-style: normal;
}

:root {
    --gris: #434444;
    --azul: #095374;
    --verde: #b0bf3e;
    --verde-claro: #d0da89;
    --blanco: #e7ecea;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.cover-minimal {
    width: 100%;
    height: 100vh;
    min-height: 100%;
    position: relative;
    overflow: hidden;
}

/* Imagen de fondo */
.cover-minimal-imagen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.cover-minimal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(9, 83, 116, 0.20) 0%, 
        rgba(67, 68, 68, 0.2) 100%);
    z-index: 2;
}

/* Contenido principal */
.cover-minimal-contenido {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--blanco);
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.cover-minimal-titulo {

    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    letter-spacing: 8px;
    margin-bottom: 0.5rem;
    color: var(--blanco);
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease;
}

.cover-minimal-subtitulo {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--blanco);
    text-shadow: 0 2px 15px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease 0.2s both;
}

.cover-minimal-descripcion {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    margin-bottom: 2.5rem;
    color: var(--blanco);
    opacity: 0.9;
    max-width: 600px;
    line-height: 1.6;
    animation: fadeInUp 1s ease 0.4s both;
}

.cover-minimal-botones {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.cover-minimal-btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.5px;
}

.cover-minimal-btn-primario {
    text-decoration: none;
    background: var(--verde);
    color: var(--gris);
    box-shadow: 0 8px 20px rgba(9, 83, 116, 0.4);
}

.cover-minimal-btn-primario:hover {
    background: var(--verde-claro);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(9, 83, 116, 0.5);
}

.cover-minimal-btn-secundario {
    text-decoration: none;
    background: transparent;
    color: var(--blanco);
    border: 2px solid var(--verde-claro);
    backdrop-filter: blur(5px);
}

.cover-minimal-btn-secundario:hover {
    background: rgba(176, 191, 62, 0.2);
    border-color: var(--verde);
    transform: translateY(-3px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .cover-minimal-titulo {
        letter-spacing: 4px;
    }
    
    .cover-minimal-botones {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    
    .cover-minimal-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cover-minimal-titulo {
        letter-spacing: 2px;
        font-size: clamp(2rem, 8vw, 2.5rem);
    }
    
    .cover-minimal-subtitulo {
        font-size: clamp(1.5rem, 5vw, 1.8rem);
    }
    
    .cover-minimal-descripcion {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 992px) {
    /* Convertir el flex en columna */
    div[style*="display: flex; gap: 3rem; align-items: flex-start;"] {
        flex-direction: column !important;
    }
    
    /* Ajustar tamaños */
    div[style*="flex: 1;"], 
    div[style*="flex: 0.8;"] {
        width: 100% !important;
    }
    
    /* Imagen más pequeña */
    .bloque-imagen[style*="height: 400px"] {
        height: 300px !important;
    }
}

@media screen and (max-width: 768px) {
    .bloque-imagen[style*="height: 400px"] {
        height: 250px !important;
    }
    
    ul {
        padding-left: 1rem !important;
    }
}

@media screen and (max-width: 480px) {
    .bloque-imagen[style*="height: 400px"] {
        height: 200px !important;
    }
    
    li {
        font-size: 0.9rem !important;
    }
}

