:root {
    --gray: #494949;
    --botones: #0A939E;
    --naranja: #FF7C43;
    --titulos: #0A6E9F;
    --sm: 14px;
    --md: 16px;
    --lg: 28px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'PT Sans', Arial, sans-serif;
}

.pagina5 {
    background-color: var(--naranja);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    padding: 2rem 1rem;
}

.texto5 {
    text-align: center;
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.titulo5 {
    font-size: 40px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.texto5 p {
    font-size: 30px;
    font-weight: 300;
    line-height: 1.4;
    max-width: 600px;
    width: 100%;
}


@media (max-width: 768px) {
    .pagina5 {
        min-height: 150px;
        padding: 1.5rem 1rem;
    }
    
    .texto5 {
        gap: 0.8rem;
    }
    
    .titulo5 {
        margin-bottom: 0.3rem;
    }
}

@media (max-width: 480px) {
    .pagina5 {
        min-height: 130px;
        padding: 1rem 0.5rem;
    }
    
    .texto5 {
        gap: 0.5rem;
    }
}

@media (min-width: 1200px) {
    .pagina5 {
        min-height: 250px;
        padding: 3rem 2rem;
    }
}
