/*CSS ESTEIRA*/
/*CSS ESTEIRA*/
/*CSS ESTEIRA*/
/* Container do vídeo e esteira */
.video-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Container da esteira */
.containerNOVO {
    position: relative;
    z-index: 2; /* acima do vídeo */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Esteira animada */
.containerNOVO-esteira {
    display: flex;
    width: max-content;
    animation: scroll 15s linear infinite;
}

.esteira {
    display: flex;
    gap: 20px;
}

/* Itens da esteira */
.esteira-item {
    flex: 0 0 auto;
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.esteira-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* Animação infinita */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Responsividade */
@media (max-width: 992px) {
    .video-container {
        height: 400px;
    }

    .esteira-item {
        width: 150px;
        height: 150px;
    }

    .containerNOVO-esteira {
        animation-duration: 25s;
    }
}

@media (max-width: 768px) {
    .video-container {
        height: 300px;
    }

    .esteira-item {
        width: 250px;
        height: 250px;
    }

    .containerNOVO-esteira {
        animation-duration: 15s;
    }
}
/*-------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------*/

/*CSS VOCE CONECTADO*/
/*CSS VOCE CONECTADO*/
/*CSS VOCE CONECTADO*/
.container_img {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.content-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

/* === Lado da Imagem === */
.image-container {
    flex: 1 1 40%;
    display: flex;
    justify-content: center;
    padding: 20px;
}

.image-container img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

/* === Lado dos Cards === */
.text-container {
    flex: 1 1 55%;
    display: flex;
    justify-content: center;
    padding: 20px;
}

.floating-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.floating-card {
    flex: 1 1 calc(50% - 20px);
    background-color: #fff;
    color: #333;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.floating-card:hover {
    transform: translateY(-5px);
}

.floating-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #00002e;
}

.floating-card i {
    margin-left: 8px;
    color: #fa7900;
}

.floating-card p {
    font-size: 14px;
    line-height: 1.5;
}

/* ========== RESPONSIVO PARA CELULARES ========== */
@media (max-width: 768px) {
    .container_img {
        padding: 30px 10px;
    }

    .content-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .image-container {
        flex: 1 1 100%;
        padding: 0;
        margin-bottom: 20px;
    }

    .image-container img {
        max-width: 90%;
    }

    .text-container {
        flex: 1 1 100%;
        padding: 0;
    }

    .floating-container {
        flex-direction: column;
        width: 100%;
        gap: 15px;
        align-items: center;
    }

    .floating-card {
        width: 90%;
        flex: none;
    }

    .floating-card h4 {
        font-size: 16px;
    }

    .floating-card p {
        font-size: 13px;
    }
}

/*-------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------*/


/*CSS NOSSOS PLANOS*/
/*CSS NOSSOS PLANOS*/
/*CSS NOSSOS PLANOS*/


/* Container geral */
.container_wrapper {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

/* Linha de cards */
.wrapper {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Card de plano */
.card {
    background-color: #fa7900;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    max-width: 320px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 100%;
    height: auto;
    display: block;
}

/* Botão */
.btn_wrapper {
    background-color: #fa7900;
    color: white;
    padding: 12px 25px;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn_wrapper:hover {
    background-color: #d66200;
    transform: scale(1.05);
}

/* Centralização */
.centralize {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .wrapper {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .card {
        max-width: 90%;
    }
}

/*-------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------*/

/*CSS Clube de Vantagens*/
/*CSS Clube de Vantagens*/
/*CSS Clube de Vantagens*/

.resp-container {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Imagem grande para desktop */
.resp-desktop {
    display: block;
}

.resp-desktop img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* Slider mobile */
.resp-mobile {
    display: none;
    width: 100%;
    margin: 20px auto;
}

.resp-mobile .resp-slide-wrapper {
    width: 100%;
    overflow: hidden;
}

.resp-mobile .resp-slide {
    width: 100%;
    margin-bottom: 20px;
}

.resp-mobile .resp-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* Responsivo */
@media (max-width: 768px) {
    .resp-desktop {
        display: none;
    }

    .resp-mobile {
        display: block;
    }
}

/*-------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------*/

/*CSS Um pouco sobre a gente*/
/*CSS Um pouco sobre a gente*/
/*CSS Um pouco sobre a gente*/
.abt-container {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 20px;
}

/* Linha flexível */
.abt-row {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Texto sobre a empresa */
.abt-text {
    flex: 1;
    min-width: 300px;
}

.floating-card-sobre {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.floating-card-sobre:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.floating-card-sobre i {
    margin-right: 10px;
}

/* Vídeo de background */
.abt-video {
    flex: 1;
    min-width: 300px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    min-height: 300px;
    /* altura mínima do container */
    max-height: 500px;
    /* altura máxima do container */
}

.background-video2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsividade */
@media (max-width: 992px) {
    .abt-row {
        flex-direction: column;
        gap: 30px;
    }

    .abt-video {
        max-height: 300px;
    }
}

/*-------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------*/
/*CSS Perguntas Frequentes*/
/*CSS Perguntas Frequentes*/
/*CSS Perguntas Frequentes*/

.faq-container {
    width: 100%;
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
}

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

.faq-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: linear-gradient(135deg, #003580, #001f4d);
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #0056b3, #003580);
}

.faq-toggle {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-answer {
    display: none;
    padding: 15px 25px;
    background-color: #f4f4f4;
    font-size: 16px;
    color: #333;
    border-left: 4px solid #fa7900;
    border-radius: 0 0 12px 12px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-toggle {
    transform: rotate(90deg);
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .faq-container {
        padding: 0 10px;
    }

    .faq-question {
        font-size: 16px;
        padding: 15px 18px;
    }

    .faq-answer {
        font-size: 14px;
        padding: 12px 18px;
    }
}




/*-------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------*/