body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f4f6f8;
    color: #333;
}

.sobre-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 20px;
    background: linear-gradient(to right, #061a2b, #0b2c44, #061a2b);
}

.logo-catalogo {
    width: 90px;
    height: auto;
    border: 2px solid #00cfff;
    border-radius: 12px;
    box-shadow: 0 0 12px #00cfff;
}

.titulo-sobre {
    text-align: center;
    color: white;
}

.titulo-sobre h1 {
    margin: 0;
    font-size: 3rem;
    font-weight: bold;
}

.titulo-sobre p {
    margin: 0;
    font-size: 1.2rem;
}

.container{
    max-width:1100px;
    margin:50px auto;
    padding:0 25px;
}

.card{
    background:#fff;
    border-radius:18px;
    padding:40px;
    margin-bottom:40px;
    box-shadow:0 12px 30px rgba(0,0,0,.12);
    border-left:6px solid #00cfff;
}

.card h2{
    color:#0b2c44;
    font-size:2rem;
    margin-bottom:25px;
    border-bottom:2px solid #00cfff;
    padding-bottom:10px;
}

.card p{
    font-size:1.15rem;
    line-height:1.9;
    text-align:justify;
    margin-bottom:22px;
}

.card strong{
    color:#008fd6;
}

.card em{
    color:#ff9800;
    font-style:italic;
}

blockquote{
    background:#061a2b;
    color:white;
    padding:20px;
    border-left:5px solid #00cfff;
    border-radius:10px;
    font-size:1.3rem;
    text-align:center;
    font-style:italic;
    margin:35px 0;
}

.final{
    text-align:center;
    font-size:1.3rem;
    font-weight:bold;
    color:#0b2c44;
}

@media(max-width:768px){

    .sobre-header{
        flex-direction:column;
        gap:15px;
    }

    .titulo-sobre h1{
        font-size:2.2rem;
    }

    .card{
        padding:25px;
    }

    .card h2{
        font-size:1.5rem;
    }

    .card p{
        font-size:1rem;
    }

}

/* ===== Foto dos Fundadores ===== */

.historia-imagem{

    max-width:1100px;
    margin:60px auto 40px;

    display:flex;
    align-items:center;
    justify-content:center;

    gap:50px;

    padding:20px;
}

.foto-fundadores{

    width:380px;
    border-radius:20px;

    border:4px solid #00cfff;

    box-shadow:
        0 0 25px rgba(0,207,255,.4),
        0 20px 40px rgba(0,0,0,.25);

    transition:.4s;
}

.foto-fundadores:hover{

    transform:scale(1.03);

    box-shadow:
        0 0 35px rgba(0,207,255,.7),
        0 25px 50px rgba(0,0,0,.35);

}

.texto-imagem{

    flex:1;

}

.texto-imagem h2{

    color:#0b2c44;
    font-size:2.3rem;
    margin-bottom:20px;

}

.texto-imagem p{

    font-size:1.15rem;
    line-height:1.9;
    text-align:justify;

}

/* Responsivo */

@media(max-width:900px){

.historia-imagem{

    flex-direction:column;

}

.foto-fundadores{

    width:90%;
    max-width:420px;

}

.texto-imagem{

    text-align:center;

}

.texto-imagem p{

    text-align:justify;

}

}