﻿.color-black,
#page-wrapper,
.clearfix {
    background-color: #16181e !important;
}

header {
    background-color: transparent !important;
}

#content {
    padding-top: 0px !important;
}

.VOD-header {
    display: none;
}

.menu-superior {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* acima do banner */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: transparent;
}

.navbar {
    background: transparent !important;
    padding: 20px 40px;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.navbar-logo img {
    height: 40px;
}

.navbar-menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 30px; /* espaçamento entre os itens */
}

    .navbar-menu li a {
        color: white;
        text-decoration: none;
        font-weight: 500;
    }


.mobile-nav-button {
    margin-top: 27px !important;
    z-index: 99999;
}

@media (max-width: 768px) {

    .navbar-menu {
        flex-direction: column;
        position: fixed;
        top: 0;
        left: -250px;
        width: 250px;
        height: 100%;
        background-color: #16181e;
        padding: 90px 30px;
        transition: left 0.3s ease;
        z-index: 1000;
    }

        .navbar-menu.active {
            left: 0;
        }

        .navbar-menu li {
            margin-bottom: -10px;
        }

            .navbar-menu li a {
                font-size: 18px;
                color: #fff;
            }
}

#footer {
    display: none;
}

.tamandua-bg {
    position: relative; /* garante o posicionamento como base */
    background: url('/assets/img/tamandua/tamandua-streaming-fundo.png') no-repeat center center;
    background-size: cover;
    min-height: 100vh;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 1px 1px 2px #000;
    z-index: 1; /* abaixo do menu */
}

.titulo-plataforma {
    font-weight: 800 !important;
}


@media (min-width: 1701px) {
    .tamandua-bg {
        min-height: 124vh;
    }
}


h1, h2, h3 {
    color: #fff !important;
}

.text-white {
    color: #fff;
}

.texto-tamandua {
    margin-top: 230px;
}

.lead {
    margin-top: 30px;
    color: #fff !important;
}

@media (max-width: 768px) {
    .lead {
        font-size: 17px !important;
    }
}



.btn-gradient-border {
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    background: transparent;
    position: relative;
    z-index: 1;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

    .btn-gradient-border::before {
        content: "";
        position: absolute;
        inset: 0;
        padding: 2px;
        border-radius: 50px;
        background: linear-gradient(90deg, #FFD600, #FF00B8);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        z-index: -1;
    }

    .btn-gradient-border:hover {
        background: linear-gradient(90deg, #FFD600, #FF00B8);
        color: #000;
    }

.logos-section {
    position: relative; /* importante para posicionamento absoluto interno */
}


    .logos-section .row {
        display: flex;
        align-items: center; /* alinha verticalmente texto e carrossel */
    }

.logo-box {
    width: 180px;
    height: 100px;
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
    cursor: pointer;
    background-color: #1a1a1a;
}

    .logo-box img {
        max-width: 120px;
        max-height: 70px;
        opacity: 0.3;
        filter: grayscale(100%);
        transition: opacity 0.3s;
    }

.custom-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none; /* evita bloquear o hover/carrossel */
    z-index: 10;
}

    .custom-nav span {
        background: none;
        border: none;
        font-size: 2rem;
        color: white;
        cursor: pointer;
        pointer-events: all; /* reativa clique só nas flechas */
        transition: color 0.3s;
    }

        .custom-nav span:hover {
            color: #999;
        }

/* Responsivo: aumenta as flechas no mobile */
@media (max-width: 768px) {
    .custom-nav {
        top: 45%; /* ajusta a posição vertical no mobile */
        padding: 0 10px;
    }

        .custom-nav span {
            font-size: 2.4rem;
        }
}

@media (max-width: 481px) {
    .logo-box img {
        filter: none !important;
        transition: none !important;
        opacity: 1 !important; /* opcional, se quiser exibir mais visível no mobile */
    }
}

.logo-box-siara:hover {
    border: 2px solid #b9ff00;
}

.logo-box-curta-on:hover {
    border: 2px solid #f26f28;
}

.logo-box-porta-curtas:hover {
    border: 2px solid #c80000;
}

.logo-box-curta-enem:hover {
    border: 2px solid #ffa500;
}

.logo-box-curta-educacao:hover {
    border: 2px solid #255398;
}

.logo-box-brasiliana:hover {
    border: 2px solid #f36f29;
}

.logo-box:hover img {
    opacity: 1;
    filter: grayscale(0%);
}

#logo-description {
    margin-top: 20px;
    font-size: 14px;
    color: #aaa;
}

#logo-tooltip {
    position: absolute;
    background: rgba(0,0,0,0.8);
    color: #fff;
    padding: 10px;
    border-radius: 6px;
    max-width: 250px;
    font-size: 14px;
    display: none;
    pointer-events: none;
    z-index: 9999;
}

@media (max-width: 481px) {
    .logos-section .col-sm-12 {
        text-align: center; /* centraliza o texto e o carrossel */
    }

    .owl-carousel {
        width: 100% !important;
    }


    .logos-section .row {
        display: block;
        text-align: center;
    }

    .logos-section h3 {
        text-align: center;
    }

    .logo-parte-1 {
        margin-bottom: 30px;
    }

    .logos-section {
        margin-top: 30px;
        margin-bottom: 30px;
    }
}

.para-quem-section-1 {
    margin-top: 200px !important;
}

@media (max-width: 481px) {
    .para-quem-section-1 {
        margin-top: 100px !important;
    }
}

.para-quem {
    width: auto;
    max-width: 1700px;
    margin: 0 auto;
}

    .conheca-os-servicos .row,
    .para-quem .row {
        margin-left: 0px !important;
        margin-right: 0px !important;
    }


.para-quem-item {
}

    .para-quem-item div {
        font-size: 25px;
        color: #fff;
        max-width: 270px;
    }

    .para-quem-item img {
        border-radius: 20px;
    }




@media (max-width: 481px) {
    .row-para-quem {
        flex-direction: column;
        gap: 10px
    }

    .para-quem-primeiro-bloco img {
        width: 70%;
    }
}

@media (max-width: 768px) {
    .para-quem-primeiro-bloco img {
        width: 95%;
    }
}

.conheca-os-servicos {
    margin-top: 200px !important;
    width: auto;
    max-width: 1700px;
    margin: 0 auto;
}

.conheca-os-servicos-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.conheca-os-servicos-col-1 {
    margin-top: -100px !important;
    margin: 0 auto;
    margin-left: 90px;
}

    .conheca-os-servicos-col-1 h1 {
        font-size: 32px;
    }

@media (max-width: 481px) {
    .conheca-os-servicos {
        margin-top: 200px !important;
    }

    .conheca-os-servicos-row {
        flex-direction: column;
    }

    .conheca-os-servicos-col-1 {
        text-align: center;
        margin-bottom: 50px !important;
        margin-left: auto;
    }
}

.para-quem-titulo {
    font-size: 32px;
    font-weight: bold;
    display: inline-block;
    background: linear-gradient(90deg, #a8ff60, #f7f7f7);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.depoimentos {
    margin-top: 200px !important;
    position: relative;
    background: url('/assets/img/tamandua/fundo-colorido.png') center center/cover no-repeat;
    padding: 100px 0;
    color: #fff;
    text-align: center;
    overflow: hidden; /* importante para esconder o excesso dos pseudoelementos */
}

@media (max-width: 481px) {
    .depoimentos {
        margin-top: 100px !important;
    }
}

.depoimentos::before,
.depoimentos::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 1;
}

.depoimentos::before {
    top: 0;
    background: linear-gradient(to bottom, rgb(22 24 30), transparent);
}

.depoimentos::after {
    bottom: 0;
    background: linear-gradient(to top, rgb(22 24 30), transparent);
}

.depoimentos .container {
    position: relative;
    z-index: 2; /* para ficar acima do degradê */
}

.depoimentos .titulo {
    font-size: 32px;
    margin-bottom: 50px;
    margin-left: 90px;
    text-align: left;
}

.container-depoimentos {
    width: auto;
    max-width: 1700px;
    margin: 0 auto;
}

    .container-depoimentos .row {
        margin-left: 0px;
        margin-right: 0px;
    }

.depoimentos-carousel .depoimento-item {
    padding: 20px;
    border-radius: 10px;
    max-width: 300px;
    margin: auto;
    text-align: left;
}

.depoimento-item .stars {
    font-size: 20px;
    color: #fff;
}

.depoimento-item .autor {
    display: flex;
    align-items: center;
    justify-content: left;
    margin-top: 15px;
}

    .depoimento-item .autor img {
        width: 40px !important;
        height: 40px;
        border-radius: 50%;
        margin-right: 10px;
    }

@media (max-width: 481px) {
    .depoimentos .titulo {
        text-align: center;
        margin-left: auto;
    }
}

.contato {
    margin-top: 200px !important;
    margin-bottom: 50px !important;
    max-width: 1700px;
    margin: 0 auto;
}

    .contato .titulo {
        font-size: 32px;
        margin-left: 30px;
        color: #fff;
    }

    .contato .titulo-1 {
        font-size: 32px;
        margin-left: 30px;
        color: #fff;
        margin-top: 30px;
    }

    .contato .sub-titulo {
        font-size: 18px;
        margin-left: 30px;
        color: #787b82;
    }

    .contato .sub-titulo-1 {
        font-size: 18px;
        margin-left: 30px;
        color: #787b82;
    }

    .contato input[type="email"],
    .contato input[type="tel"],
    .contato textarea {
        width: 100%;
        background-color: transparent;
        border: 1px solid #787b82;
        color: #787b82;
        padding: 10px 12px;
        border-radius: 10px;
        font-size: 16px;
        outline: none;
    }

        .contato input::placeholder,
        .contato textarea::placeholder {
            color: #787b82;
            opacity: 1;
        }

    .contato .btn-gradient-border {
        width: 100%;
    }

@media (max-width: 481px) {
    .contato {
        margin-top: 50px !important;
    }

    .form-contato {
        margin-top: 20px;
    }
}


.para-quem-carousel {
    position: relative;
}

    .para-quem-carousel .owl-nav {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 15px;
        pointer-events: none;
        z-index: 10;
    }

    .para-quem-carousel .owl-prev,
    .para-quem-carousel .owl-next {
        background-color: rgba(0, 0, 0, 0.5);
        color: white;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        font-size: 0; /* esconde o texto */
        pointer-events: all;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: background 0.3s ease;
    }

        .para-quem-carousel .owl-prev:hover,
        .para-quem-carousel .owl-next:hover {
            background-color: rgba(255, 255, 255, 0.3);
        }

        .para-quem-carousel .owl-prev::before {
            content: "\f104"; /* Font Awesome: chevron-left */
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            font-size: 18px;
        }

        .para-quem-carousel .owl-next::before {
            content: "\f105"; /* Font Awesome: chevron-right */
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            font-size: 18px;
        }


.owl-next {
    right: 10px;
}


.como-funciona {
    width: 100%;
    background: #000;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
}

    .como-funciona .container {
        max-width: 1000px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .como-funciona h2 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .como-funciona .descricao {
        color: #bbb;
        margin-bottom: 3rem;
    }

.titulo-section {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 40px;
    justify-content: center;
}

    .titulo-section h2 {
        font-size: 2.5em;
        font-weight: 700;
        color: #fff;
        margin: 0;
    }

    .titulo-section p {
        margin: 0;
        color: #6d6b6b;
        line-height: 1.4;
        font-weight: 600;
        font-size: 2.5em;
        text-align: left;
        margin-left: 10px;
    }

@media (max-width: 481px) {
    .titulo-section {
        flex-direction: column;
        align-items: center;
    }

        .titulo-section h2 {
            font-size: 1.5em;
        }

        .titulo-section p {
            font-size: 1.5em;
            text-align: center
        }
}

/* GRID CARDS */
.cards {
    display: flex;
    flex-direction: row;
    justify-content: space-between
}

    .cards img {
        max-width: 300px;
    }

@media (max-width: 768px) {
    .cards img {
        width: 100%;
        max-width: 210px;
    }
}

@media (max-width: 481px) {
    .cards {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

        .cards img {
            width: auto;
            max-width: 90%;
        }
}
/* container geral */
.cta-box {
    margin-top: 2rem;
}

/* grid de 3 colunas */
.ajuda {
    display: grid;
    grid-template-columns: 0.6fr 1.2fr 0.8fr;
    align-items: center;
    background: #222;
    border-radius: 12px;
    padding: 2rem;
    text-align: left;
}

    /* coluna título */
    .ajuda .titulo h3 {
        font-size: 2.5rem;
        font-weight: bold;
        margin: 0;
        color: #a8a8a8 !important;
        text-align: center !important
    }

    /* coluna texto */
    .ajuda .texto p {
        margin: 0;
        color: #bbb;
        line-height: 1.4;
        font-size: 1.3em;
    }

    /* coluna botões */
    .ajuda .botoes .btn {
        margin-bottom: 10px;
    }

    /* divisória entre texto e botões */
    .ajuda .texto {
        border-right: 1px solid rgba(255, 255, 255, 0.2);
        padding-right: 1.5rem;
    }

    .ajuda .botoes {
        padding-left: 1.5rem;
    }

@media (max-width: 481px) {
    .ajuda {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

        .ajuda .titulo h3 {
            font-size: 2.2rem;
        }

        .ajuda .texto {
            border-right: none;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            padding-right: 0;
            padding-bottom: 1.5rem;
        }

        .ajuda .botoes {
            padding-left: 0;
            width: 100%;
        }

            .ajuda .botoes .btn-gradient-border {
                width: 100%;
            }
}
