/* SECTION */
.about-section {
    position: relative;
    overflow: hidden;

    min-height: 100vh; /* 🔥 importante */
    padding: 120px 20px;
}

/* VÍDEO */
.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    min-width: 100%;
    min-height: 100%;

    object-fit: cover;
    z-index: 0;
    pointer-events: none; /* 🔥 evita bugs de clique */
}



@media(max-width: 768px){

    .bg-video {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);

        width: 120%;
        height: 100%;

        object-fit: cover;
        object-position: right center;
        filter: brightness(0.6);
    }
}


/* TABELA */
.info-table {
    margin-top: 25px;
    border-radius: 8px;
    overflow: hidden;
}

/* LINHA */
.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 14px 15px;
    position: relative;

    border-bottom: 1px solid rgba(255,255,255,0.06);

    transition: .3s;
}

/* BARRA LATERAL ANIMADA */
.info-row::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;

    background: linear-gradient(to bottom, gold, transparent);
    transition: .3s;
}

/* HOVER */
.info-row:hover {
    background: rgba(255,255,255,0.03);
}

.info-row:hover::before {
    width: 3px;
}

/* LADO ESQUERDO */
.info-left {
    display: flex;
    align-items: center;
    gap: 12px;

    color: #ddd;
    font-size: 14px;
}

/* ÍCONE COM FUNDO */
.info-icon {
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255,215,0,0.2);

    border-radius: 6px;
    color: #facc15;

    transition: .3s;
}

/* VALOR (direita) */
.info-value {
    color: gold;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
}

/* EFEITOS HOVER */
.info-row:hover .info-icon {
    background: gold;
    color: black;
    transform: scale(1.1);
}

.info-row:hover .info-value {
    text-shadow: 0 0 8px gold;
}

@media(max-width: 768px){
    .info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .info-value {
        font-size: 13px;
    }

    .tab-btn {
        font-size: 13px;
        padding: 10px 15px;
    }

}

/* BOX PRINCIPAL */
.about-wrapper {
    position: relative;
    z-index: 2;

    display: flex;
    max-width: 1200px;
    margin: auto;
    gap: 40px;

    /* NOVO */
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(12px);
    padding: 40px;
    border-radius: 12px;

    border: 1px solid rgba(255, 215, 0, 0.2);

    box-shadow:
        0 0 40px rgba(0,0,0,0.8),
        0 0 20px rgba(255,215,0,0.05);
}

.about-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);

    width: 60%;
    height: 1px;

    background: linear-gradient(to right, transparent, gold, transparent);
}

/* MENU */
.about-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-right: 1px solid rgba(255,255,255,0.1);
    padding-right: 20px;
}

.tab-btn {
    background: transparent;
    border: 1px solid rgba(255,215,0,0.3);
    color: #aaa;
    padding: 12px 20px;
    cursor: pointer;
    text-align: left;
    transition: .3s;
}

/* ativo */
.tab-btn.active {
    background: gold;
    color: black !important; /* 🔥 ESSENCIAL */
    font-weight: bold;
}

/* hover */
.tab-btn:hover {
    border-color: gold;
    color: gold;
}

/* CONTEÚDO */
.about-content {
    flex: 1;
    padding-left: 20px;
}

.tab-content {
    display: none;
    animation: fade .4s ease;
}

.tab-content.active {
    display: block;
}

.tab-content h2 {
    color: #facc15;
    font-size: 32px;
    margin-bottom: 15px;
}

.tab-content p {
    color: #ccc;
    line-height: 1.7;
}

/* animação */
@keyframes fade {
    from {opacity: 0; transform: translateY(10px);}
    to {opacity: 1; transform: translateY(0);}
}

@media(max-width: 768px){
    .about-wrapper {
        flex-direction: column;
    }

    .about-menu {
        flex-direction: row;
        overflow-x: auto;
    }

    .tab-btn {
        white-space: nowrap;
    }
}