/* assets/css/inicio.css */

#inicio {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('') no-repeat center center fixed;
    background-size: cover;
    color: white;
}

.inicio-container {
    max-width: 800px;
    padding: 20px;
}

#inicio h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

#inicio p {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.btn-explorar {
    display: inline-block;
    background-color: #e63946;
    color: white;
    padding: 10px 20px;
    font-size: 1.2rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn-explorar:hover {
    background-color: #d62839;
}
