body {
    font-family: 'Poppins', sans-serif;
    justify-content: center;
    align-items: center;
    background-size: cover; /* Para que la imagen cubra todo el fondo */
    background-position: center; /* Para centrar la imagen */
    background-repeat: no-repeat; /* Para que la imagen no se repita */
    background-attachment: fixed; /* Para que el fondo se mantenga fijo al hacer scroll */
    height: 100vh;
}
.navbar {
    width: 100%;
    background: #000;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    position: absolute;
    top: 0;
    left: 0;
}

.navbar img {
    height: 60px;
}


.image-container {
    width: 100%;
    height: 0;
    padding-top: 56.25%; /* Relación de aspecto 16:9 */
    position: relative;
    overflow: hidden;
    
}

.image-container img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: 100%;
    object-fit: cover; /* Mantiene el aspecto, recortando si es necesario */
    border-radius: 8px;
}



.boton-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Para tres columnas */
    gap: 25px; /* Espacio entre botones */
    padding: 20px;
}


.boton {
    background-color: white;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    font-size: 18px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* Fondo negro con opacidad del 20% */
    z-index: 0;
}

.boton img {
    width: 20px;
    height: 20px;
    margin-bottom: 10px;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}



.container {
    position: relative; /* Necesario para posicionar el pseudo-elemento */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 90%;
    max-width: 1200px;
    background-color: #f7f9fc; /* Color de fondo más claro y moderno */
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin: 100px auto 0;
    justify-content: center;
    text-align: center;
    animation: fadeIn 0.6s ease-in-out;
    overflow: hidden; /* Asegura que el pseudo-elemento no sobresalga del contenedor */

}


@media (max-width: 576px) {
    .container {
        grid-template-columns: 1fr; /* Una columna en pantallas pequeñas */
    }
}

.button-card {
    background-color: #ffffff; /* Fondo blanco para las tarjetas */
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 1px solid #e0e0e0; /* Borde sutil gris */
    background: linear-gradient(145deg, #ffffff, #f1f3f8); /* Gradiente sutil para profundidad */
}

.button-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.icon {
    font-size: 36px;
    margin-bottom: 15px;
    color: #3498db; /* Color de icono azul brillante */
    transition: color 0.3s ease;
}

.button-card:hover .icon {
    color: #2980b9; /* Color de icono más oscuro al hacer hover */
}

.button-card span {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50; /* Color del texto más oscuro y moderno */
}









.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}



.form-group button:hover {
    background-color: #0056b3;
}


.welcome-message p {
    margin: 0;
    font-size: 1.5em;
    font-weight: 600;
}
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}