.por-que-confiar {
    min-height: 80vh;
    margin: 0;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    position: relative;
    background: #ffffff;
}

.por-que-confiar__container {
    background: #232e3b;
    border-radius: 20px;
    padding: 3rem;
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    gap: 1rem;
    box-sizing: border-box;

}

.por-que-confiar__titulo {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.por-que-confiar__descripcion {
    color: #e6e6e6;
    text-align: center;
    font-size: 35px;
    line-height: 1.6;
    margin-top: 0.5rem;
    max-width: 900px;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.por-que-confiar__resaltado {
    color: #ffb347;
    font-weight: 600;
}

.por-que-confiar__pregunta {
    color: #fff;
    font-size: 30px;
    font-weight: 500;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.por-que-confiar__botones {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    width: 100%;
    max-width: 550px;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}

.por-que-confiar__boton {
    flex: 1;
    background: #ffb347;
    color: #232e3b;
    border: none;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    padding: 12px 16px;
    gap: 8px;
    text-align: center;
}

.por-que-confiar__boton:hover {
    background: #ffd580;
    transform: translateY(-3px);
}

.por-que-confiar__boton-icono {
    width: 22px;
    height: 22px;
    border-radius: 5px;
}

/* === MEDIA QUERIES === */

@media (max-width: 768px) {
    .por-que-confiar {
        padding: 4rem 1.5rem;
        min-height: auto;
    }
    .por-que-confiar__container {
        padding: 2.5rem;
    }

    .por-que-confiar__titulo{
        font-size: 32px;
    }

    .por-que-confiar__descripcion{
        font-size: 18px;
    }

    .por-que-confiar__pregunta{
        font-size: 22px;
    }
}

/* --- Estilos para Móviles (480px o menos) --- */
@media (max-width: 480px) {
    .por-que-confiar {
        padding: 3rem 1rem;
        min-height: auto;
    }
    .por-que-confiar__container {
        padding: 2rem 1.5rem;
    }
    .por-que-confiar__titulo {
        font-size: 32px;
    }
    .por-que-confiar__descripcion {
        font-size: 18px;
    }
    .por-que-confiar__pregunta{
        font-size: 22px;
    }
    .por-que-confiar__botones {
       flex-direction: column;
    }
    
    .por-que-confiar__boton {
        flex: none; 
        width: 100%; 
        max-width: 350px;
    }
}