/* Contenedor del banner */
.banner {
    position: relative;
    width: 100%;
    height: calc(100vh - 80px); /* Altura total menos navbar */
    margin: 0;
    padding: 0;
    overflow: hidden;
}

/* Imagen ocupa todo el espacio */
.banner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Texto centrado */
.banner-texto {
    font-family: 'Georgia', serif;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}

/* Botón */
.btn-banner {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background-color: #ff66b2;
    color: white;
    font-size: 18px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-banner:hover {
    background-color: #ff3385;
    transform: scale(1.1);
}


/* Secciones */
section {
    padding: 100px;
    text-align: center;
    font-size: 24px;
    color: #333;
}

.ver-mas-container {
    text-align: center;
    margin: 20px 0;
}

.ver-mas-btn {
    background-color: #ff4da6;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 18px;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s;
}

.ver-mas-btn:hover {
    background-color: #ff3385;
}

