html {
    background-color: #000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1150;
    border-bottom: 3px solid #fcb842;
    will-change: top, transform;
    transition: top 0.35s ease, background-color 0.35s ease, transform 0.35s ease;
}

.header.header-below-banner {
    /* when header slides below banner keep it visible with slight shadow */
    box-shadow: 0 6px 18px rgba(0,0,0,0.14);
}

/* Banner no topo (header) */
.header-banner {
    background: linear-gradient(90deg, #ff5a00 0%, #ffd400 100%);
    color: #111;
    padding: 12px 14px;
    font-weight: 800;
    position: fixed;
    left: 0;
    width: 100%;
    z-index: 1200;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    display: flex !important;      /* ← ESSENCIAL */
    align-items: center;
    justify-content: center;       /* centraliza tudo numa linha só */
    gap: 14px;                     /* espaço entre texto / cronômetro / botão */
    font-size: 0.98rem;
    transition: top 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
    will-change: top, opacity, transform;
}

/* CTA interno do banner */
.header-banner .banner-cta {
    background: #111;
    color: #fff;
    padding: 6px 10px;
    border-radius: 8px;
    margin-left: 10px;
    display: inline-block;
    font-weight: 900;
    transition: transform 0.35s ease;
}

/* visual emphasis when banner is active at top */
.header-banner.banner-active {
    transform: translateY(0);
    opacity: 1;
}

.header-banner.banner-active .banner-cta {
    transform: scale(1.02);
}

.cd-boxes {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-left: 10px;
}

.cd-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    font-weight: bold;
}

.countdown-inline {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 10px;
}

.cd-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 10px;
}

.cd-item span {
    background: #222;
    padding: 3px 6px;
    border-radius: 5px;
    font-size: 12px;
    color: #fff;
}

.cd-item small {
    margin-top: 2px;
    font-size: 8px;
    color: #030300;
}


.header.scrolled {
    /* background: linear-gradient(to top, #000 0%, #000 100%); */
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0, 1) 100%);
    border-bottom: 0px;

    transition: background 0.9s ease;

}

.logo {
    text-align: center;
}

.logo img {
    max-height: 60px;
}

/* Hero Section */
.hero {
    background-color: #000;
    background-image: url('../img/bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 115px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23FFD700" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23FFD700" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 30px;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
}

.vsl-wrapper {
    margin: auto;
    border: #FFD700 solid 3px;
    position: relative;
}

#vslPlayer {
    object-fit: cover;
    cursor: pointer;
}

.video-js .vjs-big-play-button {
    display: block !important;
    font-size: 3em;
    border: none;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    transition: background 0.2s;
}

.video-js .vjs-big-play-button:hover {
    background: rgba(53, 41, 41, 0.7);
}

.video-js .clear-play-button {
    display: none !important;
}

#fake-progress {
    position: absolute;
    bottom: -1px;
    width: 100%;
    height: 10px;
    background: rgba(0, 0, 0, 0.383);
    overflow: hidden;
}

#fake-progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #FFA500, #FFD700);
    transition: width 0.2s linear;
}

.hero .subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    color: #fff;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pillars-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.pillar-item {
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid #FFD700;
    border-radius: 15px;
    padding: 30px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.pillar-number {
    font-size: 2rem;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 15px;
}

.pillar-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
}

.pillar-description {
    color: #ccc;
    font-size: 1rem;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    padding: 20px 40px;
    font-size: 1.3rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
    background: linear-gradient(45deg, #FFA500, #FFD700);
}

/* Botão WhatsApp Flutuante */
.whatsapp-float {
    position: fixed !important;
    bottom: 80px !important;
    right: 20px !important;
    z-index: 999999 !important;
    background-color: #25D366;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.whatsapp-float img {
    width: 35px !important;
    height: 35px !important;
    object-fit: contain;
    display: block;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}


/* Sections */
.section {
    padding: 80px 0;
}

.section-dark {
    background: #000;
    color: white;
}

.section-gold {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 50px;
    color: #FFD700;
}

.section-gold .section-title {
    color: #000;
}

.exclusive-materials {
    background-color: #000;
    padding: 12px;
    border: #FFD700 solid;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Method Section */
.method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.method-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #FFD700;
    border-radius: 20px;
    padding: 40px;
    transition: transform 0.3s ease;
}

.method-card:hover {
    transform: scale(1.05);
}

.method-card h3 {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.method-card ul {
    list-style: none;
    padding: 0;
}

.method-card li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.method-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: bold;
}

/* Course Content */
.course-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

.course-item {
    background: #1a1a1a;
    border: 1px solid #FFD700;
    padding: 12px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.course-item:hover {
    transform: translateY(-5px);
}

/*Materials cotent*/
.materials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.course-number {
    background: #FFD700;
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 20px;
}

.person-img {
    z-index: 1;
    margin-right: -30px;
}

.person-img img {
    height: 350px;
    opacity: 1;
}

/* Pricing */
.pricing-container {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.9);
    border: 3px solid #FFD700;
    border-radius: 20px;
    padding: 50px;
}
.price-original {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ff1a1a;
    text-decoration: line-through;
    text-decoration-thickness: 1.5px;
}

.highlight-badge {
    background: rgba(255, 0, 0, 0.14);
    padding: 10px 18px;
    border-radius: 10px;
    border-left: 5px solid #ff0000;
    display: inline-block;
}


.price-current {
    font-size: 3rem;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 20px;
}

.price-installments {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 30px;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial {
    background: #1a1a1a;
    border-left: 5px solid #FFD700;
    padding: 30px;
    border-radius: 10px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #ccc;
}

.testimonial-author {
    font-weight: bold;
    color: #FFD700;
}

#video1 {
    max-height: 300px;
    /* controla a altura, ajuste conforme quiser */
    object-fit: cover;
    /* evita distorções */
    cursor: pointer;
    /* mostra que é clicável */
    border: #FFD700 solid 3px;
}

#video1 .clear-play-button {

    display: none !important;

}

/* FAQ */
.faq-item {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-question {
    background: #2a2a2a;
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    color: #FFD700;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #3a3a3a;
}

.faq-answer {
    padding: 20px;
    color: #ccc;
    display: none;
}

/* Footer */
.footer {
    background: #000;
    color: #666;
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid #333;
}

/* Tablets: 2 colunas */
@media (max-width: 991.98px) {

    .course-grid,
    .materials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .subtitle {
        font-size: 1.2rem;
    }

    .pillars-list {
        grid-template-columns: 1fr;
    }

    .method-grid,
    .course-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Smartphones: 1 coluna */
@media (max-width: 575.98px) {

    .course-grid,
    .materials-grid {
        grid-template-columns: 1fr;
    }

    .exclusive-materials {
        text-align: left;
    }

    /* evita sobreposição da imagem posicionada como absolute */
    .person-img.position-absolute {
        position: static;
        margin-top: 12px;
        text-align: center;
    }

    /* reduz gaps e fonte para caber melhor em telas pequenas */
    .course-grid,
    .materials-grid {
        gap: 12px;
    }

    .course-item .course-number {
        font-size: 1.2rem;
    }

    .header-banner {
        font-size: 0.88rem;
        padding: 10px;
        text-align: center;
        line-height: 1.2;
    }

    .header-banner .banner-cta {
        padding: 6px 8px;
        margin-left: 6px;
        font-size: 0.92rem;
    }

    .header-banner span {
        display: inline-block;
        margin: 0 6px;
    }

    .header { transition: top 0.28s ease; }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}