/* Estilos para a página Sobre - Trilhando */

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

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background: #06040D;
    color: white;
}

/* Cabeçalho - Reutilizado */
nav {
    background-color: black;
    user-select: none;
    padding: 10px 20px;
}

nav ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    list-style: none;
    gap: 20px;
}

li {
    display: flex;
    align-items: center;
}

li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    white-space: nowrap;
}

.logo {
    height: 50px;
}

.imgAcessibilidade {
    margin-right: 5px;
    height: 20px;
    width: 20px;
}

nav ul li a:hover {
    color: #CD97EB;
    transition: color 0.3s;
}

nav ul li a.ativo {
    color: #CD97EB;
    pointer-events: none;
    cursor: default;
}

/* BREADCRUMB */
.breadcrumb {
    padding: 16px 0;
    font-size: 14px;
    margin-left: 40px;
    background-color: #06040D;
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb a {
    color: #d6d6d6;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: #CD97EB;
    text-decoration: underline;
}

.breadcrumb-icon-home {
    width: 16px;
    height: 16px;
    color: #00FF55;
}

.breadcrumb-icon {
    width: 16px;
    height: 16px;
    color: #B8B5FF;
    flex-shrink: 0;
}

.breadcrumb li:last-child .breadcrumb-icon {
    display: none;
}

.breadcrumb li[aria-current="page"] {
    color: #FFFFFF;
    font-weight: 600;
}

/* HERO SOBRE */
.hero-sobre {
    max-width: 1200px;
    margin: 40px auto 80px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-sobre-texto {
    flex: 1;
}

.hero-sobre-texto h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-sobre-texto p {
    font-size: 18px;
    color: #b8b8b8;
    line-height: 1.8;
}

.hero-sobre-imagem {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.hero-sobre-imagem img {
    width: 100%;
    display: block;
}

/* PILARES */
.pilares {
    max-width: 1200px;
    margin: 0 auto 100px;
    padding: 0 20px;
}

.cards-pilares {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.card-pilar {
    background: #1a1424;
    border: 1px solid #3a2a55;
    padding: 30px;
    border-radius: 16px;
    transition: 0.3s;
}

.card-pilar:hover {
    transform: translateY(-5px);
    border-color: #8F3EF7;
}

.card-pilar .icone {
    font-size: 32px;
    color: #CD97EB;
    margin-bottom: 20px;
    display: block;
}

.card-pilar h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.card-pilar p {
    font-size: 15px;
    color: #b8b8b8;
    line-height: 1.6;
}

/* EQUIPE */
.equipe {
    max-width: 1200px;
    margin: 0 auto 100px;
    padding: 0 20px;
    text-align: center;
}

.equipe h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.subtitulo {
    color: #b8b8b8;
    margin-bottom: 50px;
    display: block;
}

.cards-equipe {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
}

.card-equipe {
    background: #1a1424;
    padding: 25px;
    border-radius: 16px;
    border: 1px solid #3a2a55;
    transition: 0.3s;
}

.card-equipe:hover {
    border-color: #4fd699;
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 2px solid #3a2a55;

    background: #2a1f3d;
    /* fundo do círculo */
    color: #4fd699;
    /* cor da inicial */
    font-size: 24px;
    font-weight: 700;

    display: flex;
    /* pra centralizar a inicial */
    align-items: center;
    justify-content: center;
    position: relative;
    /* pra img ficar por cima */
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    /* fica por cima da inicial */
    top: 0;
    left: 0;
}

.card-equipe h4 {
    margin-bottom: 5px;
}

.funcao {
    font-size: 13px;
    color: #4fd699;
    display: block;
    margin-bottom: 15px;
}

.linkedin-link {
    color: white;
    font-size: 20px;
    transition: 0.3s;
}

.linkedin-link:hover {
    color: #CD97EB;
}

/* PARCEIROS */

.parceiros {
    padding: 80px 5%;
    background: #06040D;
}

.parceiros h2 {
    text-align: left;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 10px;
}

.parceiros .subtitulo {
    color: #b0a8c5;
    margin-bottom: 40px;
}

.grid-parceiros {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.card-parceiro {
    display: flex;
    align-items: center;
    gap: 25px;
    background: #1e152e;
    border: 1px solid #3a2a55;
    border-radius: 16px;
    padding: 20px 25px;
    transition: 0.3s ease;
}

.card-parceiro:hover {
    border-color: #4fd699;
    background: #2a1f3d;
    transform: translateX(5px);
}

.logo-parceiro {
    width: 80px;
    /* largura fixa pra todas */
    height: 50px;
    /* altura fixa pra todas */
    background: #fff;
    /* caixinha branca */
    border-radius: 8px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    /* respiro interno */
    overflow: hidden;
}

.logo-parceiro img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* ESSENCIAL: encaixa a logo inteira sem esticar */
    display: block;
}

.logo-parceiro-2 {
    width: 80px;
    /* largura fixa pra todas */
    height: 50px;
    /* altura fixa pra todas */
    background: #1100ff;
    /* caixinha branca */
    border-radius: 8px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    /* respiro interno */
    overflow: hidden;
}

.logo-parceiro-2 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* ESSENCIAL: encaixa a logo inteira sem esticar */
    display: block;
}

.info-parceiro {
    flex: 1;
    /* ocupa todo espaço do meio */
}

.info-parceiro h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-parceiro p {
    color: #b0a8c5;
    font-size: 0.9rem;
    line-height: 1.5;
}

.btn-site {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #2a1f3d;
    border: 1px solid #3a2a55;
    color: #4fd699;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.85rem;
    white-space: nowrap;
    /* não quebra o texto */
    transition: 0.3s;
    flex-shrink: 0;
}

.btn-site:hover {
    background: #4fd699;
    color: #0f0a1a;
    gap: 12px;
}

/* Responsivo: no celular vira coluna */
@media (max-width: 768px) {
    .card-parceiro {
        flex-direction: column;
        text-align: center;
    }

    .btn-site {
        width: 100%;
        justify-content: center;
    }
}

/* MENTORIA */

/* =======================================================
                        MENTORIA
======================================================= */

.mentoria {
    max-width: 1200px;
    margin: 70px auto;
    padding: 0 20px;
}

.mentoria a {
    text-decoration: none;
}

/* CARD */

.mentoria .card-cta {

    display: flex;
    align-items: center;
    gap: 30px;

    padding: 34px;

    border-radius: 22px;

    background:
        linear-gradient(135deg, #51206a 0%, #341845 45%, #23112d 100%);

    border: 1px solid rgba(255, 255, 255, .18);

    transition: .35s;

    overflow: hidden;

    position: relative;
}

/* brilho */

.mentoria .card-cta::before {

    content: "";

    position: absolute;

    top: -80px;
    left: -120px;

    width: 260px;
    height: 260px;

    background: rgba(167, 139, 250, .10);

    border-radius: 50%;

    filter: blur(35px);
}

.mentoria .card-cta:hover {

    transform: translateY(-4px);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, .45);
}


/* ÍCONE */

.mentoria .cta-icon {

    width: 95px;
    height: 95px;

    border-radius: 50%;

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

    flex-shrink: 0;

    background:
        linear-gradient(145deg, #9d4edd, #6d28d9);

    box-shadow:
        0 0 35px rgba(157, 78, 221, .45),
        inset 0 0 15px rgba(255, 255, 255, .10);
}

.mentoria .cta-icon i {

    color: white;

    font-size: 42px;
}


/* TEXTO */

.mentoria .card-cta-texto {

    flex: 1;
}

.badge-mvp {

    display: inline-flex;

    align-items: center;

    padding: 7px 15px;

    margin-bottom: 16px;

    border-radius: 999px;

    background: rgba(167, 139, 250, .15);

    border: 1px solid rgba(255, 255, 255, .12);

    color: #e9d5ff;

    font-size: 12px;

    font-weight: 600;
}

.card-cta-texto h4 {

    color: white;

    font-size: 28px;

    margin-bottom: 12px;
}

.card-cta-texto p {

    color: #d6d6e4;

    font-size: 16px;

    line-height: 1.7;

    max-width: 650px;

    margin-bottom: 12px;
}

.card-cta-texto small {

    color: #9ca3af;

    font-size: 13px;

    display: block;
}


/* BOTÃO */

.btn-cta {

    padding: 15px 24px;

    border-radius: 12px;

    border: 1px solid rgba(255, 255, 255, .25);

    background: rgba(255, 255, 255, .05);

    color: white;

    font-size: 15px;

    font-weight: 600;

    cursor: pointer;

    transition: .3s;

    white-space: nowrap;

    backdrop-filter: blur(10px);
}

.btn-cta:hover {

    background: white;

    color: #6d28d9;

    transform: translateY(-2px);
}


/* RESPONSIVO */

@media(max-width:900px) {

    .card-cta {

        flex-direction: column;

        align-items: flex-start;

        text-align: left;
    }

    .btn-cta {

        width: 100%;
    }
}

/* CARD CTA FINAL */
.card-final {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.card-final .card-cta {
    background: linear-gradient(to right, #481f58 0%, #2c1435 100%);
    border-radius: 16px;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: .35s;
}

.card-final .card-cta:hover{
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .45);
}

.card-final .cta-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
}

.card-final .cta-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card-final .card-cta-texto {
    flex: 1;
    /* ocupa o meio */
}

.card-final .card-cta-texto h4 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px 0;
}

.card-final .card-cta-texto p {
    font-size: 14px;
    color: #94a3b8;
    margin: 0;
}

.card-final .btn-cta {
    background: linear-gradient(to right, #521f68 0%, #2c1435 100%);
    /* roxo do botão */
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    border: 1px solid white;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    white-space: nowrap;
    transition: 0.3s;
}

.card-final .btn-cta:hover {
    background: #fff;
    color: #b65cff;
    transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.footer {

    width: 100%;

    .parceiros {
        max-width: 1200px;
        margin: 0 auto 100px;
        padding: 0 20px;
    }

    .parceiros h2 {
        text-align: center;
        font-size: 36px;
        margin-bottom: 50px;
    }

    .grid-parceiros {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .card-parceiro {
        background: #1a1424;
        border: 1px solid #3a2a55;
        padding: 30px;
        border-radius: 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    background: #051816;

    color: #fff;

    margin-top: 80px;

    padding: 40px 0;

    border-top: 1px solid rgba(255, 255, 255, .08);
}

/* Container */

.footerContainer {

    max-width: 1200px;

    margin: 0 auto;

    padding: 0 40px;

    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    gap: 40px;
}

/* Logo */

.footerLogo {

    width: 260px;
}

.logo {

    width: 70px;

    margin-bottom: 20px;
}

.footerLogo p {

    font-size: 14px;

    color: #d4d4d4;

    line-height: 1.6;

    margin-bottom: 25px;
}

.footerLinks {

    display: flex;

    gap: 20px;
}

.footerLinks a {

    color: #fff;

    text-decoration: none;

    font-size: 13px;
}

.footerLinks a:hover {

    color: #9f5cff;
}

/* Colunas */

.footerCol h3 {

    font-size: 16px;

    margin-bottom: 18px;
}

.footerCol ul {

    list-style: none;
}

.footerCol ul li {

    margin-bottom: 12px;
}

.footerCol a {

    color: #d6d6d6;

    text-decoration: none;

    font-size: 14px;

    transition: .3s;
}

.footerCol a:hover {

    color: #9f5cff;
}

.footerCol p {

    color: #d6d6d6;

    font-size: 14px;

    margin-bottom: 20px;
}

/* Redes sociais */

.redes {

    display: flex;

    gap: 18px;
}

.redes i {

    font-size: 22px;

    cursor: pointer;

    transition: .3s;
}

.redes i:hover {

    color: #9f5cff;
}

/* Botão */

.vlibras {

    background: #7c2cff;

    color: white;

    border: none;

    border-radius: 6px;

    padding: 8px 18px;

    cursor: pointer;

    transition: .3s;
}

.vlibras:hover {

    background: #9650ff;
}

/* Copyright */

.copyright {

    background: #041110;

    color: #d6d6d6;

    text-align: center;

    padding: 18px;

    font-size: 13px;

    border-top: 1px solid rgba(255, 255, 255, .08);
}

/*=========================
      RESPONSIVO
=========================*/

@media(max-width:900px) {

    .footer {

        flex-wrap: wrap;

        justify-content: center;

        text-align: center;
    }

    .footerLogo {

        width: 100%;
    }

    .footerLinks,
    .redes {

        justify-content: center;
    }

}

@media(max-width:600px) {

    .footer {

        flex-direction: column;

        align-items: center;

        text-align: center;
    }

}