.container {
    width: 100%;
    min-height: 300vh;
    padding: 0 150px; /* Espacio en los costados */
    box-sizing: border-box;
}

.seccion {
    width: 100%;
    height: 100vh;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-bottom: 1px solid #ccc;
    margin-bottom: 60px;
    background-size: 120%; 
    background-position: center center; 
}

.seccion:nth-child(1) {
    background-image: url('/images/laamerica.jpg');
}

.seccion:nth-child(2) {
    background-image: url('/images/MS-Bucerias.png');
}

.seccion:nth-child(3) {
    background-image: url('/images/alcalde960.png');
}

.badge {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #333;
}

.titulo-principal {
    font-size: 72px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 20px;
    color: #ffffff;
}

.subtitulo {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 30px;
    color: #ffffff;
    max-width: 600px;
}

.descripcion {
    font-size: 18px;
    line-height: 1.6;
    color: #ffffff;
    max-width: 600px;
}

/* Colores de fondo alternados para mejor visualización */
.seccion:nth-child(odd) {
    background-color: #f8f8f8;
}

.seccion:nth-child(even) {
    background-color: #fff;
}

.contact-section {
    position: relative;
    width: 100%;
    height: 50vh; /* Ajusta la altura para que coincida con la imagen */
    background: url('/images/desarr.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-box {
    background: rgba(0, 0, 0, 0.5); 
    color: white;
    padding: 20px 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-box h1 {
    font-size: 3rem;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
}
.ver-mas-btn {
margin-top: 30px;
padding: 8px 20px; 
color: #f39c12;
font-size: 14px;  
border: 2px solid #f39c12;
border-radius: 5px; 
text-decoration: none;
display: inline-block;
width: auto;  
height: auto;  
min-width: 150px; 
text-align: center;
transition: background-color 0.3s, color 0.3s;
}

.ver-mas-btn:hover {
background-color: #f39c12;
color: #fff;
}

/* imagen/palabra*/

  
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 60vh;
    background: black;
    z-index: -1;
}

.hero {
    position: relative;
    width: 85%;
    height: 60vh;
    background: url('/images/desarr.jpg') no-repeat center center/cover;
    margin-left: 15%;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 33%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
.text {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    color: white;
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 2px;
}

@media (max-width: 1024px) {
    .hero {
        width: 100%;
        margin-left: 0;
        height: 70vh;
    }
    .overlay {
        width: 50%;
    }
    .text {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 60vh;
    }
    .overlay {
        width: 60%;
    }
    .text {
        font-size: 1.8rem;
        left: 10%;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 50vh;
    }
    .overlay {
        width: 100%;
    }
    .text {
        font-size: 1.5rem;
        left: 5%;
    }
}
