.franja {
    overflow: hidden;
    width: 100%;
    height: auto;
    position: relative;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 100%);
    backdrop-filter: blur(2px);
}

.franjaContainer {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    gap: 24px;
}

.franjaTitle {
    color: var(--color-blanco);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    margin: 0;
}

.franjaContent {
    width: 100%;
    max-width: 1200px;
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.franjaText {
    color: var(--color-blanco);
    font-size: 1.125rem;
    line-height: 1.6;
    flex: 1;
}

.franjaButton {
    width: 160px;
    height: 52px;
    background-color: #ffffff;
    
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    text-align: center;
    display: grid;
    place-items: center;
    text-decoration: none;
}

#franjaApoyarButton {
    color: var(--color-rojo);
}

#franjaEstudiarButton {
    color: var(--color-azul);
}



.franjaButton:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

#franjaApoyarContainer {
    background: linear-gradient(135deg, var(--color-rojo) 0%, #d40058 100%);
}

#franjaEstudiarContainer {
    background: linear-gradient(135deg, var(--color-azul) 0%, #057acd 100%);
}

#franjaFraseViaDonBosco{
    height: auto;
    overflow: hidden;
    width: 100%;
    position: relative;
    background: var(--color-blanco);
    box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}

#fraseDonBoscoContainer{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    gap: 24px;
}


#fraseDonBosco{
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

#fraseDonBosco img{
    width: 500px;
    height: auto;
    border-radius: 16px;
}

#frase{
    flex: 1;
    line-height: 1.6;
    padding: 24px 28px;
    border-radius: 16px;
    background: #ffffff;
}

#autorFrase{
    opacity: 0.9;
    text-align: right;
    font-family: 'Ananda', sans-serif;
    font-weight: 100;
    font-size: 30px;
}

#fraseText{
  font-family: 'Dancing Script', cursive;
}



@media screen and (max-width: 800px){
    #fraseDonBosco{
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    #fraseDonBosco img{
        width: 60%;
        max-width: 320px;
    }
    #frase{
        padding: 16px 18px;
    }
}
