* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: Arial, sans-serif;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    padding-left: 20px;
    z-index: 2; /* Asegura que el header esté sobre la imagen de fondo */
    background: transparent;
}

header img {
    width: 350px; /* Ajusta el tamaño del logo */
}

.background-container {
    position: relative;
    height: 100vh;
    background: url('/scr/hero2.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Oscurece la imagen de fondo */
    z-index: 1;
}

.center-box {
    display: flex;
    gap: 20px;
    z-index: 2; /* Asegura que los botones estén sobre la capa oscura */
}

.option-box {
    width: 200px;
    height: 200px;
    background-color: rgba(0, 0, 0, 0.7); /* Negro con 70% de opacidad */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.option-box:hover {
    transform: scale(1.05);
}

.option {
    text-decoration: none;
    color: white;
    text-align: center;
}

.icono {
    width: 60px; /* Ajusta el tamaño según tus necesidades */
    height: 60px; /* Ajusta el tamaño según tus necesidades */
    margin-bottom: 10px;
}


i {
    font-size: 50px;
    margin-bottom: 10px;
}

h3 {
    font-size: 20px;
}

@media (max-width: 768px) {
    .center-box {
        flex-direction: column;
    }
    .option-box {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .option-box {
        width: 120px;
        height: 120px;
    }
    i {
        font-size: 40px;
    }
    h3 {
        font-size: 18px;
    }
}
