body {
margin: 0;
font-family: Arial, sans-serif;
background: #ffffff;
color: #444;
text-align: center;
}


.header {
background: #e67a00;
padding: 40px 0 60px;
position: relative;
color: white;
}


.header::after {
content: "";
position: absolute;
bottom: -60px; /* moved lower */
left: 0;
width: 100%;
height: 100px; /* larger to hide overlap */
background: #e67a00;
transform: skewY(-3deg); /* softer angle */
transform-origin: top left;
z-index: -1; /* send behind title */
}


.titulo {
background: #e67a00;
display: inline-block;
padding: 10px 25px;
font-size: 32px;
border-radius: 4px;
font-weight: bold;
}


.container {
max-width: 900px;
margin: 80px auto 40px;
padding: 0 20px;
}


h2 {
font-size: 28px;
font-weight: bold;
color: #333;
margin-bottom: 10px;
}


.divider {
width: 120px;
height: 3px;
background: #e67a00;
margin: 0 auto 20px;
}


p {
font-size: 16px;
line-height: 1.6;
margin-bottom: 30px;
 color: #0000ff; /* Ejemplo: azul */
}



.botones {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
}


.btn {
background: #e67a00;
color: white;
padding: 12px 26px;
border-radius: 20px;
font-size: 15px;
border: none;
cursor: pointer;
}

.boton-otros {
    display: block;      /* Hace que ocupe toda la línea */
    margin-top: 20px;    /* Espacio arriba */
}
