/* =========================
   RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Raleway', sans-serif;
    background:#f8f9fb;
    color:#144565;
    overflow-x:hidden;
    line-height:1.8;
}

a{
    text-decoration:none;
    color:inherit;
}

img{
    display:block;
    max-width:100%;
}

/* =========================
   HEADER
========================= */

.cabecalho{
    background:#144565;
    padding:20px 0;
    box-shadow:0 4px 15px rgba(0,0,0,.12);
}

.logo-link{
    display:flex;
    justify-content:center;
    align-items:center;
}

.logo{
    width:220px;
    transition:.4s;
}

.logo:hover{
    transform:scale(1.05);
}

/* =========================
   HERO / APRESENTAÇÃO
========================= */

.imagem-texto{
    max-width:1300px;
    margin:80px auto;
    padding:0 30px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:60px;
}

.imagem{
    flex:1;
}

.imagem img{
    width:100%;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.texto{
    flex:1;
}

.texto h2{
    font-family:'Lexend', sans-serif;
    font-size:2.5rem;
    color:#144565;
    margin-bottom:25px;
    position:relative;
}

.texto h2::after{
    content:"";
    width:80px;
    height:4px;
    background:#bb9b75;
    display:block;
    margin-top:10px;
    border-radius:20px;
}

.texto p{
    color:#555;
    font-size:1.08rem;
    text-align:justify;
}

/* =========================
   TÍTULO BIOGRAFIAS
========================= */

.bio-titulo{
    text-align:center;
    font-family:'Lexend', sans-serif;
    font-size:2.4rem;
    color:#144565;
    margin:80px 0 50px;
    position:relative;
}

.bio-titulo::after{
    content:"";
    display:block;
    width:90px;
    height:4px;
    background:#bb9b75;
    margin:15px auto 0;
    border-radius:20px;
}

/* =========================
   BIOGRAFIAS
========================= */

.bioado,
.bioajulia{
    max-width:1200px;
    margin:0 auto 80px;
    padding:40px;

    display:flex;
    align-items:center;
    gap:40px;

    background:white;
    border-radius:20px;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

    transition:.4s;
}

.bioado:hover,
.bioajulia:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.circulo{
    min-width:220px;
    width:220px;
    height:220px;

    border-radius:50%;
    overflow:hidden;

    border:5px solid #bb9b75;

    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.imagem-circular{
    width:100%;
    height:100%;
    object-fit:cover;
}

.bios{
    flex:1;
}

.bios h3{
    font-family:'Lexend', sans-serif;
    color:#144565;
    margin-bottom:15px;
    font-size:1.8rem;
}

.bios p{
    color:#555;
    text-align:justify;
    font-size:1.05rem;
}

/* =========================
   RODAPÉ
========================= */

.rodape{
    background:#144565;
    margin-top:80px;
}

.footer-container{
    max-width:1200px;
    margin:auto;
    padding:50px 20px;
}

.footer-content{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:40px;
}

.footer-section{
    flex:1;
    min-width:280px;
}

.contact-item{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px;
}

.footer-icon{
    width:28px;
    height:28px;
    filter:brightness(0) invert(1);
}

.contact-item p{
    color:white;
    margin:0;
}

.footer-bottom{
    text-align:center;
    color:white;
    border-top:1px solid rgba(255,255,255,.15);
    margin-top:30px;
    padding-top:20px;
    font-size:.95rem;
}

/* =========================
   TABLETS
========================= */

@media(max-width:992px){

    .imagem-texto{
        gap:40px;
    }

    .texto h2{
        font-size:2rem;
    }

    .bioado,
    .bioajulia{
        flex-direction:column;
        text-align:center;
    }

    .bios p{
        text-align:justify;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .logo{
        width:180px;
    }

    .imagem-texto{
        flex-direction:column;
        margin:40px auto;
        padding:0 20px;
        gap:30px;
    }

    .texto h2{
        font-size:1.8rem;
        text-align:center;
    }

    .texto h2::after{
        margin:10px auto 0;
    }

    .texto p{
        font-size:1rem;
    }

    .bio-titulo{
        font-size:1.9rem;
        margin:50px 0 30px;
    }

    .bioado,
    .bioajulia{
        padding:25px;
        margin-bottom:40px;
    }

    .circulo{
        width:170px;
        height:170px;
        min-width:170px;
    }

    .bios h3{
        font-size:1.5rem;
        text-align:center;
    }

    .bios p{
        font-size:.95rem;
    }

    .footer-content{
        flex-direction:column;
        text-align:center;
    }

    .contact-item{
        justify-content:center;
    }
}

/* =========================
   CELULARES PEQUENOS
========================= */

@media(max-width:480px){

    .texto h2{
        font-size:1.6rem;
    }

    .bio-titulo{
        font-size:1.6rem;
    }

    .circulo{
        width:140px;
        height:140px;
        min-width:140px;
    }

    .bios h3{
        font-size:1.3rem;
    }

    .bios p{
        font-size:.92rem;
    }

    .footer-bottom{
        font-size:.8rem;
    }
}