/* =========================================
BIOGRAFIAS | KAUÃ THE BARBER
========================================= */


/* GERAL */

.bio-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.bio-section {
    padding: 110px 0;
}

.bio-section-title {
    max-width: 800px;
    margin-bottom: 60px;
}

.bio-section-title.centralizado {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.bio-section-title>span,
.metodo-content>span,
.bio-cta>.bio-container>span {
    display: inline-block;
    color: #d4af37;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.bio-section-title h2 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.05;
    margin-bottom: 20px;
}

.bio-section-title p {
    color: #b5b5b5;
    line-height: 1.8;
}


/* =========================================
VOLTAR AO SITE
========================================= */

.voltar-site a {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #ffffff;
    text-decoration: none;

    font-weight: 600;

    transition: 0.3s ease;
}

.voltar-site a:hover {
    color: #d4af37;
}


/* =========================================
HERO
========================================= */

.bio-hero {
    min-height: 100vh;

    display: flex;
    align-items: center;

    background: #050505;

    padding: 140px 0 80px;
}

.bio-hero-grid {
    display: grid;

    grid-template-columns: minmax(300px, 0.85fr) 1fr;

    gap: 80px;

    align-items: center;
}

.bio-hero-image {
    height: 650px;

    border-radius: 24px;

    overflow: hidden;

    border: 1px solid #1d1d1d;

    background: #111111;
}

.bio-hero-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.bio-label {
    display: inline-block;

    color: #d4af37;

    font-size: 0.8rem;

    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 25px;
}

.bio-hero-content h1 {
    font-size: clamp(4rem, 8vw, 7rem);

    line-height: 0.9;

    letter-spacing: -5px;

    text-transform: uppercase;

    margin-bottom: 30px;
}

.bio-hero-content h2 {
    font-size: 1.3rem;

    color: #ffffff;

    margin-bottom: 20px;
}

.bio-hero-content p {
    max-width: 580px;

    color: #b5b5b5;

    line-height: 1.8;

    margin-bottom: 30px;
}


/* SOCIAL */

.bio-social {
    display: flex;

    gap: 14px;
}

.bio-social a {
    width: 48px;
    height: 48px;

    border-radius: 50%;

    background: #111111;

    border: 1px solid #252525;

    color: #ffffff;

    display: flex;

    align-items: center;

    justify-content: center;

    text-decoration: none;

    font-size: 1.1rem;

    transition: 0.3s ease;
}

.bio-social a:hover {
    background: #d4af37;

    color: #000000;

    transform: translateY(-3px);
}


/* =========================================
HISTÓRIA
========================================= */

.bio-historia {
    background: #0a0a0a;
}

.historia-grid {
    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 80px;
}

.historia-destaque h3 {
    font-size: clamp(2rem, 4vw, 3.5rem);

    line-height: 1.1;
}

.historia-texto p {
    color: #b5b5b5;

    font-size: 1.05rem;

    line-height: 1.9;

    margin-bottom: 22px;
}

.historia-texto .conteudo-pendente {
    color: #d4af37;

    font-weight: 600;
}


/* =========================================
ESPECIALIDADES
========================================= */

.bio-especialidades {
    background: #050505;
}

.especialidades-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 24px;
}

.especialidade-card {
    padding: 45px 35px;

    background: #111111;

    border: 1px solid #1d1d1d;

    border-radius: 20px;

    text-align: center;

    transition: 0.3s ease;
}

.especialidade-card:hover {
    transform: translateY(-8px);

    border-color: #333333;
}

.especialidade-card i {
    font-size: 2rem;

    color: #d4af37;

    margin-bottom: 24px;
}

.especialidade-card h3 {
    font-size: 1.5rem;

    margin-bottom: 15px;
}

.especialidade-card p {
    color: #b5b5b5;

    line-height: 1.8;
}


/* =========================================
FORMAÇÃO
========================================= */

.bio-formacao {
    background: #0a0a0a;
}

.formacao-lista {
    display: grid;

    gap: 18px;
}

.formacao-item {
    background: #111111;

    border: 1px solid #1d1d1d;

    border-radius: 18px;

    padding: 25px;

    display: flex;

    align-items: center;

    gap: 22px;
}

.formacao-icon {
    width: 55px;
    height: 55px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #181818;

    color: #d4af37;
}

.formacao-item h3 {
    margin-bottom: 4px;
}

.formacao-item p {
    color: #b5b5b5;
}

.formacao-vazia {
    min-height: 180px;

    background: #111111;

    border: 1px dashed #333333;

    border-radius: 20px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 15px;

    text-align: center;

    color: #777777;
}

.formacao-vazia i {
    color: #d4af37;

    font-size: 2rem;
}


/* =========================================
PORTFÓLIO
========================================= */

.bio-portfolio {
    background: #050505;
}

.bio-portfolio-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.bio-portfolio-card {
    height: 420px;

    border-radius: 20px;

    overflow: hidden;

    background: #111111;

    border: 1px solid #1d1d1d;
}

.bio-portfolio-card img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: 0.4s ease;
}

.bio-portfolio-card:hover img {
    transform: scale(1.04);
}

.bio-portfolio-card.placeholder {
    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    gap: 14px;

    color: #666666;
}

.bio-portfolio-card.placeholder i {
    font-size: 2rem;

    color: #d4af37;
}


/* =========================================
VÍDEOS
========================================= */

.bio-videos {
    background: #0a0a0a;
}

.videos-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 24px;
}

.video-placeholder {
    aspect-ratio: 16 / 9;

    background: #111111;

    border: 1px dashed #333333;

    border-radius: 20px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 15px;

    color: #777777;
}

.video-placeholder i {
    width: 60px;
    height: 60px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #d4af37;

    color: #000000;

    font-size: 1.2rem;
}


/* =========================================
MÉTODO KTB
========================================= */

.bio-metodo {
    background: #050505;

    text-align: center;

    border-top: 1px solid #151515;
}

.metodo-content {
    max-width: 850px;
}

.metodo-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);

    line-height: 1.1;

    margin-bottom: 20px;
}

.metodo-content p {
    color: #b5b5b5;

    max-width: 700px;

    margin: 0 auto 35px;

    line-height: 1.8;
}


/* =========================================
BOTÕES
========================================= */

.bio-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 18px 32px;

    background: #ffffff;

    color: #000000;

    text-decoration: none;

    border-radius: 12px;

    font-size: 0.9rem;

    font-weight: 700;

    letter-spacing: 0.5px;

    transition: 0.3s ease;
}

.bio-button:hover {
    background: #d4af37;

    transform: translateY(-3px);
}


/* =========================================
CTA FINAL
========================================= */

.bio-cta {
    padding: 130px 0;

    background: #0a0a0a;

    text-align: center;
}

.bio-cta h2 {
    font-size: clamp(2.8rem, 6vw, 5rem);

    line-height: 1;

    margin-bottom: 20px;
}

.bio-cta p {
    color: #b5b5b5;

    margin-bottom: 35px;
}

.bio-cta-buttons {
    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap: 15px;
}

.bio-button.secundario {
    background: #111111;

    color: #ffffff;

    border: 1px solid #2a2a2a;
}

.bio-button.secundario:hover {
    background: #d4af37;

    color: #000000;
}


/* =========================================
FOOTER
========================================= */

.bio-footer {
    background: #000000;

    border-top: 1px solid #151515;

    padding: 28px 0;
}

.bio-footer .bio-container {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}

.bio-footer p {
    color: #777777;

    font-size: 0.9rem;
}

.bio-footer a {
    color: #ffffff;

    text-decoration: none;

    font-size: 0.9rem;

    transition: 0.3s ease;
}

.bio-footer a:hover {
    color: #d4af37;
}


/* =========================================
TABLET
========================================= */

@media (max-width: 1000px) {

    .bio-hero-grid {
        grid-template-columns: 1fr 1fr;

        gap: 40px;
    }

    .bio-hero-image {
        height: 550px;
    }

    .bio-portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================
MOBILE
========================================= */

@media (max-width: 768px) {

    .bio-container {
        padding: 0 18px;
    }


    /* HERO */

    .bio-hero {
        min-height: auto;

        padding: 110px 0 70px;
    }

    .bio-hero-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .bio-hero-image {
        height: 480px;
    }

    .bio-hero-content {
        text-align: center;
    }

    .bio-hero-content h1 {
        font-size: 4rem;

        letter-spacing: -3px;
    }

    .bio-hero-content p {
        margin-left: auto;

        margin-right: auto;
    }

    .bio-social {
        justify-content: center;
    }


    /* SEÇÕES */

    .bio-section {
        padding: 80px 0;
    }

    .bio-section-title {
        text-align: center;

        margin-bottom: 40px;
    }


    /* HISTÓRIA */

    .historia-grid {
        grid-template-columns: 1fr;

        gap: 30px;

        text-align: center;
    }


    /* ESPECIALIDADES */

    .especialidades-grid {
        grid-template-columns: 1fr;
    }


    /* PORTFÓLIO */

    .bio-portfolio-grid {
        grid-template-columns: 1fr 1fr;
    }

    .bio-portfolio-card {
        height: 300px;
    }


    /* VÍDEOS */

    .videos-grid {
        grid-template-columns: 1fr;
    }


    /* CTA */

    .bio-cta {
        padding: 90px 0;
    }

    .bio-cta-buttons {
        flex-direction: column;
    }

    .bio-button {
        width: 100%;

        max-width: 350px;
    }


    /* FOOTER */

    .bio-footer .bio-container {
        flex-direction: column;

        text-align: center;
    }

}


/* =========================================
CELULARES PEQUENOS
========================================= */

@media (max-width: 480px) {

    .bio-hero-image {
        height: 420px;
    }

    .bio-hero-content h1 {
        font-size: 3.3rem;
    }

    .bio-portfolio-grid {
        grid-template-columns: 1fr;
    }

    .bio-portfolio-card {
        height: 380px;
    }

}

/* =========================
VÍDEOS DA BIOGRAFIA
========================= */

.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 360px));
    justify-content: center;
    gap: 30px;
}

.video-card {
    width: 100%;
    aspect-ratio: 9 / 16;

    overflow: hidden;

    border-radius: 20px;

    background: #111111;

    border: 1px solid #1d1d1d;
}

.video-card video {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

/* MOBILE */

@media (max-width: 768px) {

    .videos-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
    }

}

.bio-footer .bio-container {
    flex-direction: column;
    text-align: center;
}