/* ==========================================================================
   RESET BÁSICO, FONTES E VARIÁVEIS
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@700&family=Poppins:wght@300;400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@900&display=swap');

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

:root {
    --primary-blue: #0a192f;
    --secondary-blue-darker: #081425;
    --accent-tan: #ccb695; /* Cor de destaque bege/areia */
    --text-light: #f0f0f0; /* Branco suave para títulos */
    --text-grey: #c5c6c7; /* Cinza claro para parágrafos */
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    background-color: var(--primary-blue);
    color: var(--text-grey);
    overflow-x: hidden;
}

/* ==========================================================================
   COMPONENTES GERAIS (Títulos, Modais, Botões Genéricos)
   ========================================================================== */

/* Títulos de Seção */
.section-title {
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.1rem, 5vw, 1.7rem);
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title span {
    color: var(--accent-tan);
}

/* Estilos de Modal (Geral) */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    width: 90%;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.close-button {
    font-weight: bold;
    position: absolute;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 1001;
}

/* ==========================================================================
   SEÇÃO HERO (Topo)
   ========================================================================== */
.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
    color: var(--text-light);
    overflow: hidden;
    padding: 3rem 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(45deg, rgba(10, 25, 47, 0.9) 0%, rgba(10, 25, 47, 0.7) 100%);
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 3rem;
}

.hero-content {
    flex: 1.2;
    min-width: 300px;
    max-width: 600px;
    text-align: left;
}

.hero-content .tag-mba {
    display: inline-block;
    background-color: var(--accent-tan);
    color: var(--primary-blue);
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-content h1 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-light);
    text-transform: uppercase;
}

.hero-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    max-width: 550px;
    color: var(--text-grey);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    margin: 2.5rem 0;
    padding-left: 5px;
}

.hero-features span {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
}

.hero-features span:not(:last-child)::after {
    content: '|';
    color: var(--text-grey);
    opacity: 0.5;
    margin-left: 1.5rem;
}

.hero-features span i {
    color: var(--text-light);
    margin-right: 0.7rem;
    font-size: 1rem;
}

.btn-primary-outline {
    display: inline-block;
    padding: 16px 35px;
    background: transparent;
    color: var(--accent-tan);
    border: 2px solid var(--accent-tan);
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    margin-top: 1rem;
}

.btn-primary-outline:hover {
    background-color: var(--accent-tan);
    color: var(--primary-blue);
    transform: translateY(-3px);
}

/* Área do Vídeo na Hero */
.hero-video-box {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    text-align: center;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background-color: #000;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.video-thumbnail:hover {
    transform: scale(1.03);
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 17%;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.video-thumbnail:hover .play-icon {
    color: #fff;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Modal Específico do Vídeo */
#videoModal .modal-content {
    background-color: #000;
    max-width: 900px;
}

#videoModal .close-button {
    color: #fff;
    font-size: 2.5rem;
    top: -40px;
    right: 0;
}

#videoModal .close-button:hover {
    color: var(--accent-tan);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}


/* ============================================================
   /* ( media da section HERO ) 
   ============================================================ */
@media (max-width: 992px) {
    .hero-section {
        height: auto;
        padding: 5rem 0;
    }
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-content {
        text-align: center;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-features {
        justify-content: center;
        gap: 1rem 1.5rem;
    }
    .hero-features span:last-child::after {
        display: none;
    }
    .hero-video-box {
        max-width: 600px;
        width: 100%;
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 4rem 0;
    }
    .hero-container {
        padding: 0 1rem;
    }
    .hero-content h1 {
        font-size: clamp(2rem, 10vw, 2.5rem);
    }
    .hero-content p {
        font-size: 0.95rem;
    }
    .btn-primary-outline {
        padding: 14px 28px;
        font-size: 0.9rem;
    }
    .hero-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    .hero-features span::after {
        display: none;
    }
}



/* ==========================================================================
   SEÇÃO TRANSFORMAÇÃO (Cards de Ícones)
   ========================================================================== */
.transformation-section {
    padding: 2rem 2rem;
    background-color: var(--primary-blue);
    border-top: 1px solid rgba(204, 182, 149, 0.1);
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    max-width: 1300px;
    margin: 0 auto;
}

.card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(204, 182, 149, 0.2);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: all 0.4s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--accent-tan);
}

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.card-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 25, 47, 0.6);
    z-index: 1;
}

.card-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.card:hover .card-background img {
    transform: scale(1.05);
}

.card-content {
    position: relative;
    z-index: 2;
    padding: 2.5rem;
    color: var(--text-light);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--accent-tan);
    margin-bottom: 1.5rem;
}

.card-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: var(--text-light);
}

.card-description {
    font-size: 0.95rem;
    color: var(--text-grey);
    line-height: 1.6;
}

/* ============================================================
   /* ( media da section TRANSFORMAÇÃO ) 
   ============================================================ */
@media (max-width: 992px) {
    .transformation-section {
        padding: 5rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .transformation-section {
        padding: 4rem 1rem;
    }
    .cards-container {
        gap: 2rem;
    }
}


/* ==========================================================================
   SEÇÃO INSTRUTORES (Swiper)
   ========================================================================== */
.learning-section {
    padding: 2rem 2rem;
    background-color: var(--secondary-blue-darker);
    border-top: 1px solid rgba(204, 182, 149, 0.1);
}

.instructors-carousel-container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    padding: 0 40px;
}

.instructors-swiper .swiper-slide {
    display: flex;
    justify-content: center;
}

.instructor-card {
    background-color: var(--primary-blue);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(204, 182, 149, 0.2);
    width: 100%;
}

.instructor-image {
    position: relative;
    height: 300px;
}

.instructor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.instructor-image .instructor-name {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(to top, rgba(10, 25, 47, 0.9) 20%, transparent);
    text-align: left;
}

.instructor-name h4 {
    font-family: 'Oswald', sans-serif;
    color: var(--text-light);
    font-size: 1.4rem;
    text-transform: uppercase;
    margin: 0;
}

.instructor-bio {
    padding: 1.5rem;
}

.instructor-toggle {
    width: 100%;
    padding: 0.75rem;
    background-color: transparent;
    border: 1px solid var(--accent-tan);
    color: var(--accent-tan);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.instructor-toggle:hover,
.instructor-card.active .instructor-toggle {
    background-color: var(--accent-tan);
    color: var(--primary-blue);
}

.instructor-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, margin-top 0.5s ease-out;
}

.instructor-card.active .instructor-details {
    max-height: 500px;
    margin-top: 1.5rem;
}

.instructor-details ul {
    list-style: none;
    padding-left: 0;
}

.instructor-details ul li {
    font-size: 0.9rem;
    color: var(--text-grey);
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    border-bottom: 1px solid rgba(204, 182, 149, 0.1);
}

.instructor-details ul li:last-child {
    border-bottom: none;
}

.instructor-details ul li::before {
    content: '›';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-tan);
    font-weight: bold;
    font-size: 1.2rem;
}

.instructors-button-prev,
.instructors-button-next {
    color: var(--accent-tan);
}

.instructors-pagination .swiper-pagination-bullet {
    background-color: rgba(204, 182, 149, 0.5);
    opacity: 1;
}

.instructors-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-tan);
}

/* ============================================================
   /* ( media da section INSTRUTORES / APRENDER ) 
   ============================================================ */
@media (max-width: 576px) {
    .learning-section,
    .learning-grid-section {
        padding: 4rem 1rem;
    }
    .section-title {
        margin-bottom: 3rem;
    }
}

/* ==========================================================================
   SEÇÃO GRID DE APRENDIZAGEM (Módulos)
   ========================================================================== */
.learning-grid-section {
    padding: 2rem 2rem;
    background-color: var(--primary-blue);
    border-top: 1px solid rgba(204, 182, 149, 0.1);
}

.grid-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.grid-card {
    flex-basis: calc(25% - 1.5rem);
    flex-grow: 0; /* Impede que os cards cresçam demais na última linha */
    min-width: 270px;
    position: relative;
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    text-align: left;
    transition: transform .5s ease, box-shadow .5s ease;
}

.grid-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.4s ease;
}

.grid-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 25, 47, 0.9) 20%, transparent 100%);
    z-index: 1;
    transition: background-color 0.4s ease;
}

.grid-card:hover .grid-card-bg {
    transform: scale(1.05);
}

.grid-card-content {
    position: relative;
    z-index: 2;
    color: var(--text-light);
    width: 100%;
}

.grid-card-content h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.3;
    transition: opacity .45s ease, transform .45s ease;
}

/* Animação da Descrição no Hover */
.grid-card-description {
    font-size: 0.95rem;
    color: #fff;
    line-height: 1.6;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(8px);
    transition: opacity .65s ease, max-height .65s ease, transform .65s ease;
    transition-delay: .12s;
    font-weight: 500;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.8), 0 0 5px rgba(0, 0, 0, 0.6);
}

.grid-card:hover h3 {
    opacity: 0;
    transform: translateY(-8px);
}

.grid-card:hover .grid-card-description {
    max-height: 220px;
    opacity: 1;
    transform: translateY(0);
}

.grid-card:not(:hover) .grid-card-description {
    transition-delay: 0s;
}

/* Link "Mais Informações" */
.more-info {
    color: var(--accent-tan);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.8), 0 0 5px rgba(0, 0, 0, 0.6);
}

.more-info i {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.more-info:hover {
    letter-spacing: 1px;
    color: #fff;
}

.more-info:hover i {
    transform: translateX(4px);
}

/* ==========================================================================
   SEÇÃO DEPOIMENTOS
   ========================================================================== */
.testimonials-section {
    padding: 2rem 2rem;
    background-color: var(--secondary-blue-darker);
    border-top: 1px solid rgba(204, 182, 149, 0.1);
}

.satisfaction-container {
    text-align: center;
    margin-bottom: 4rem;
}

.satisfaction-stars {
    font-size: 1.0rem;
    color: var(--accent-tan);
    margin-bottom: 1rem;
}

.satisfaction-counter {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1;
}

.satisfaction-title {
    font-size: 1.1rem;
    color: var(--text-grey);
    font-weight: 600;
}

.testimonials-slider {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 0 40px;
}

.swiper-slide {
    display: flex;
    justify-content: center;
}

.testimonial-card {
    background-color: #fff;
    color: var(--primary-blue);
    padding: 1rem;
    border-radius: 8px;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-top: 5px solid var(--accent-tan);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.testimonial-name {
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-rating {
    color: var(--accent-tan);
}

.testimonial-text {
    font-size: 0.8rem;
    line-height: 1.8;
    color: #333;
}

/* Estilos do Swiper (Depoimentos) */
.swiper-button-prev,
.swiper-button-next {
    color: var(--accent-tan);
    top: 50%;
    transform: translateY(-50%);
}

.swiper-button-prev { left: 0; }
.swiper-button-next { right: 0; }

.swiper-pagination-bullet {
    background-color: rgba(204, 182, 149, 0.5);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: var(--accent-tan);
}

/* ============================================================
   /* ( media da section DEPOIMENTOS ) 
   ============================================================ */
@media (max-width: 992px) {
    .testimonials-slider {
        padding: 0 10px;
    }
}

@media (max-width: 576px) {
    .testimonials-section {
        padding: 4rem 1rem;
    }
    .testimonials-slider {
        padding: 0;
    }
}


/* ==========================================================================
   SEÇÃO DETALHES DA FORMAÇÃO (Nova Section .course-specs)
   ========================================================================== */
.course-specs {
    padding: 50px 20px;
    background: var(--primary-blue);
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(204, 182, 149, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(204, 182, 149, 0.05) 0%, transparent 40%),
        radial-gradient(circle at center, #112240 0%, var(--primary-blue) 100%);
    position: relative;
    overflow: hidden;
}

.course-specs::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(circle, rgba(204, 182, 149, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    pointer-events: none;
}

.specs-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.specs-header {
    text-align: center;
    margin-bottom: 30px;
}

.specs-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.specs-subtitle {
    color: var(--text-grey);
    font-size: 0.9rem;
    font-weight: 300;
}

.text-highlight{
    color: var(--accent-tan);
}

/* Grid System */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

/* Cards de Detalhes */
.spec-card {
    background: rgba(8, 20, 37, 0.6);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(204, 182, 149, 0.1);
    transition: all 0.3s ease;
}

/* Ícones */
.spec-icon-wrapper {
    width: 45px;
    height: 45px;
    background: rgba(204, 182, 149, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.spec-icon-wrapper i {
    font-size: 1.3rem;
    color: var(--accent-tan);
}

.spec-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 15px;
}

.spec-list li {
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.spec-item {
    margin-bottom: 12px;
    padding-left: 10px;
    border-left: 2px solid var(--accent-tan);
}

.spec-item small {
    font-size: 0.65rem;
}

.spec-item p {
    font-size: 0.95rem;
}

.spec-description {
    font-size: 0.85rem;
    line-height: 1.5;
}

/* ============================================================
   /* ( media da section DETALHES DA FORMAÇÃO - course-specs ) 
   ============================================================ */
@media (max-width: 1024px) {
    .course-specs { padding: 30px 15px; }
    .specs-title { font-size: 1.6rem; }
}

@media (max-width: 768px) {
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .spec-card { padding: 20px; }
    .specs-title { font-size: 1.5rem; }
}



/* ==========================================================================
   SEÇÃO INVESTIMENTO (PREMIUM COMPACTO + EFEITO BUBBLES)
   ========================================================================== */
.investment-section {
    padding: 60px 20px; /* Reduzido de 80px */
    background-color: var(--secondary-blue-darker);
    position: relative;
    border-top: 1px solid rgba(204, 182, 149, 0.1);
    overflow: hidden; /* Essencial para as bolinhas não vazarem */
}

/* --- EFEITO BOLINHAS DOURADAS SUBINDO (PARTÍCULAS) --- */
.investment-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 200%; /* Altura dobrada para o loop infinito */
    top: 0;
    left: 0;
    background-image: 
        radial-gradient(circle, var(--accent-tan) 2px, transparent 2.5px),
        radial-gradient(circle, var(--accent-tan) 1px, transparent 1.5px),
        radial-gradient(circle, rgba(204, 182, 149, 0.5) 2px, transparent 3px);
    background-size: 60px 60px, 100px 100px, 150px 150px;
    background-position: 0 0, 50px 50px, 100px 100px;
    opacity: 0.2; /* Dourado suave */
    animation: risingBubbles 20s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes risingBubbles {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

.investment-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 950px; /* Largura reduzida para ficar mais compacto */
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    background: var(--primary-blue);
    border: 1px solid rgba(204, 182, 149, 0.2);
    position: relative;
    z-index: 1; /* Fica acima das bolinhas */
}

.investment-column {
    padding: 2.5rem; /* Padding interno reduzido */
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* --- Coluna da Oferta (Esquerda) --- */
.offer-column {
    background: linear-gradient(145deg, rgba(204, 182, 149, 0.05) 0%, transparent 100%);
    border-right: 1px solid rgba(204, 182, 149, 0.1);
}

.discount-badge {
    background-color: var(--accent-tan);
    color: var(--primary-blue);
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 50px;
    display: inline-block;
    font-size: 0.85rem;
    margin-bottom: 15px;
    align-self: flex-start;
    box-shadow: 0 0 10px rgba(204, 182, 149, 0.4);
}

.old-price {
    font-size: 0.9rem;
    color: var(--text-grey);
    margin-bottom: 5px;
}

.old-price span {
    text-decoration: line-through;
    color: #ff6b6b;
}

.big-price {
    font-family: 'Oswald', sans-serif;
    font-size: 3.2rem; /* Reduzido de 4rem */
    line-height: 1;
    color: var(--text-light);
    margin: 8px 0;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.big-price small {
    display: block;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: var(--accent-tan);
    margin-bottom: 5px;
}

.cash-price {
    font-size: 0.9rem;
    color: var(--accent-tan);
    margin-bottom: 20px;
    opacity: 0.9;
}

/* Caixa de Alerta de Data */
.payment-alert {
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid #25d366;
    padding: 12px;
    border-radius: 8px;
    color: #25d366;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    animation: glow-green 3s infinite;
}

.payment-alert strong {
    color: #fff;
    text-decoration: underline;
}

.payment-benefits {
    list-style: none;
    padding: 0;
}

.payment-benefits li {
    font-size: 0.85rem;
    margin-bottom: 6px;
    color: var(--text-grey);
    display: flex;
    align-items: center;
}

.payment-benefits li i {
    color: var(--accent-tan);
    margin-right: 10px;
}

/* --- Coluna CTA (Direita) --- */
.cta-column {
    background-color: rgba(0, 0, 0, 0.2);
    text-align: center;
    align-items: center;
}

.cta-column h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem; /* Reduzido de 2rem */
    color: #fff;
    line-height: 1.3;
    margin-bottom: 1.2rem;
}

.cta-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    text-align: left;
    width: 100%;
    max-width: 260px;
}

.cta-features li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-grey);
    font-size: 0.9rem;
}

.cta-features li i {
    color: var(--accent-tan);
    width: 25px;
}

/* Timer */
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1.5rem;
    width: 100%;
}

.time-block {
    background: rgba(255, 255, 255, 0.05);
    padding: 8px;
    border-radius: 6px;
    min-width: 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.time-block span {
    display: block;
    font-size: 1.5rem; /* Reduzido */
    font-weight: 700;
    color: var(--accent-tan);
    line-height: 1;
}

.time-block small {
    font-size: 0.55rem;
    color: var(--text-grey);
    letter-spacing: 1px;
}

/* Botão CTA */
.btn-cta {
    background: var(--accent-tan);
    color: var(--primary-blue);
    padding: 15px 30px; /* Mais compacto */
    border-radius: 5px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
    max-width: 280px;
}

.btn-cta:hover {
    background: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(204, 182, 149, 0.3);
}

.pulse-button {
    animation: pulse-tan 2s infinite;
}

.secure-text {
    margin-top: 12px;
    font-size: 0.75rem;
    color: var(--text-grey);
    opacity: 0.7;
}

/* Animações Auxiliares */
@keyframes glow-green {
    0% { box-shadow: 0 0 5px rgba(37, 211, 102, 0.1); }
    50% { box-shadow: 0 0 15px rgba(37, 211, 102, 0.3); }
    100% { box-shadow: 0 0 5px rgba(37, 211, 102, 0.1); }
}

@keyframes pulse-tan {
    0% { box-shadow: 0 0 0 0 rgba(204, 182, 149, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(204, 182, 149, 0); }
    100% { box-shadow: 0 0 0 0 rgba(204, 182, 149, 0); }
}

/* --- RESPONSIVIDADE ESPECÍFICA PARA NOTEBOOK (Ajuste Agressivo) --- */
@media (max-width: 1366px) {
    .investment-section {
        padding: 40px 15px; /* Bem menos padding */
    }
    .investment-container {
        max-width: 850px;
    }
    .investment-column {
        padding: 2rem;
    }
    .big-price {
        font-size: 2.8rem; /* Preço menor */
    }
    .cta-column h3 {
        font-size: 1.5rem;
    }
    .btn-cta {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    .time-block span {
        font-size: 1.3rem;
    }
}

/* --- RESPONSIVIDADE MOBILE E TABLET (Mantida) --- */
@media (max-width: 900px) {
    .investment-container {
        flex-direction: column;
        max-width: 100%;
    }
    .offer-column {
        border-right: none;
        border-bottom: 1px solid rgba(204, 182, 149, 0.1);
        text-align: center;
        align-items: center;
    }
    .discount-badge {
        align-self: center;
    }
    .payment-alert {
        width: 100%;
        justify-content: center;
    }
    .cta-features {
        margin: 0 auto 2rem auto;
    }
}

@media (max-width: 480px) {
    .big-price { font-size: 3rem; }
    .investment-column { padding: 2rem 1.5rem; }
    .time-block { min-width: 50px; padding: 5px; }
    .time-block span { font-size: 1.4rem; }
}


/* ==========================================================================
   SEÇÃO FAQ (Perguntas Frequentes)
   ========================================================================== */
.faq-section {
    padding: 4rem 2rem;
    background-color: var(--primary-blue);
    border-top: 1px solid rgba(204, 182, 149, 0.1);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(204, 182, 149, 0.2);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 0.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-family: 'Poppins', sans-serif;
}

.faq-question span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
}

.faq-question i {
    font-size: 0.9rem;
    color: var(--accent-tan);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-answer p {
    padding: 0 1rem 1.5rem 1rem;
    color: var(--text-grey);
    line-height: 1.8;
    font-size: 0.9rem;
}

.faq-answer p a {
    color: var(--accent-tan);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
}

.faq-answer p a:hover {
    text-decoration: underline;
}

/* ============================================================
   /* ( media da section FAQ ) 
   ============================================================ */
@media (max-width: 576px) {
    .faq-section {
        padding: 4rem 1rem;
    }
}


/* ==========================================================================
   FOOTER E ELEMENTOS FLUTUANTES
   ========================================================================== */
.site-footer {
    padding: 2rem 2rem;
    background-color: var(--secondary-blue-darker);
    border-top: 1px solid rgba(204, 182, 149, 0.1);
    color: var(--text-grey);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.footer-logos img {
    max-height: 50px;
    width: auto;
    filter: grayscale(1) brightness(1.5);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-logos img:hover {
    filter: none;
    opacity: 1;
}

.footer-copyright {
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-copyright p {
    margin: 0.2rem 0;
}

/* Botão Flutuante do WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 32px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    animation: pulse 2s infinite;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20b957;
    color: #FFF;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ============================================================
   /* ( media do FOOTER e FLUTUANTES ) 
   ============================================================ */
@media (max-width: 767px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .site-footer {
        padding: 3rem 1rem;
    }
    .footer-logos {
        gap: 2rem;
        flex-direction: column;
        align-items: center;
    }
    .footer-logos img {
        max-height: 40px;
    }
}


/* ============================================================
   /* ( alerta no topo) 
   ============================================================ */

   /* ==========================================================================
   BARRA DE ALERTA (TOP BAR)
   ========================================================================== */
.top-alert-bar {
    background-color: var(--accent-tan); /* Fundo Dourado */
    color: var(--primary-blue); /* Texto Azul Escuro */
    padding: 12px 20px;
    text-align: center;
    position: relative;
    z-index: 9999; /* Garante que fique acima de tudo */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.alert-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
}

/* Etiqueta "Últimas Vagas" piscando */
.alert-badge {
    background-color: #c0392b; /* Vermelho alerta */
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    animation: pulse-red 2s infinite;
}

.alert-text {
    font-weight: 600;
}

.date-highlight {
    font-weight: 800;
    border-bottom: 2px solid var(--primary-blue);
    padding-bottom: 2px;
}

/* Animação de Pulso Vermelho */
@keyframes pulse-red {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(192, 57, 43, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(192, 57, 43, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(192, 57, 43, 0); }
}

/* Responsividade da Barra */
@media (max-width: 768px) {
    .alert-content {
        flex-direction: column;
        gap: 5px;
    }
    
    .alert-badge {
        font-size: 0.7rem;
        padding: 2px 8px;
    }
    
    .alert-text {
        font-size: 0.85rem;
    }
}