* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0f0f0f;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section com Vídeo */
.hero-video {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.video-background {
    width: 100%;
    height: 100%;
    position: relative;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(15,15,15,0.75) 100%);
    z-index: 1;
}

.video-placeholder-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder-bg svg {
    color: #D4AF37;
    opacity: 0.3;
    animation: pulse 3s infinite;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 0;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.highlight {
    color: #D4AF37;
    display: block;
}

.hero-subtitle {
    font-size: 22px;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

/* Vídeo Chamativo */
.video-chamativo {
    max-width: 900px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.video-frame {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* Aspect ratio 16:9 */
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 3px solid #D4AF37;
}

.video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    gap: 15px;
}

.video-placeholder svg {
    color: #D4AF37;
    opacity: 0.6;
}

.video-placeholder p {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.video-placeholder span {
    color: #999;
    font-size: 14px;
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.video-play-overlay:hover {
    background: rgba(0, 0, 0, 0.5);
}

.video-play-overlay:hover .play-button {
    transform: scale(1.1);
}

.play-button {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
    transition: all 0.3s ease;
    animation: pulse-play 2s infinite;
}

.play-button svg {
    color: #000;
    margin-left: 5px;
}

@keyframes pulse-play {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
    }
    50% {
        box-shadow: 0 10px 40px rgba(212, 175, 55, 0.8);
    }
}

.hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-cta-primary, .btn-cta-secondary {
    padding: 20px 45px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-cta-primary {
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    color: #000;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.btn-cta-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.7);
}

.btn-cta-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hero-trust {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.trust-icon {
    width: 28px;
    height: 28px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    color: #D4AF37;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.section-header h2 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 15px;
    line-height: 1.3;
}

.section-header p {
    font-size: 18px;
    color: #999;
    max-width: 700px;
    margin: 0 auto;
}

/* Sobre o Curso */
.sobre-curso {
    padding: 100px 0;
    background: #1a1a1a;
}

.sobre-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.sobre-text {
    font-size: 16px;
    color: #ccc;
}

.text-large {
    font-size: 20px;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.7;
}

.sobre-text p {
    margin-bottom: 20px;
}

.sobre-text strong {
    color: #D4AF37;
}

.video-curso-container {
    margin-top: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.video-curso-container iframe {
    width: 100%;
    height: 315px;
    display: block;
}

.sobre-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.curso-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.sobre-image:hover .curso-img {
    transform: scale(1.05);
}

.image-placeholder {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border: 2px dashed rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 80px 40px;
    text-align: center;
}

.image-placeholder svg {
    color: #D4AF37;
    opacity: 0.5;
    margin-bottom: 15px;
}

.image-placeholder p {
    color: #666;
    font-size: 14px;
}

/* Conteúdo do Curso */
.conteudo-curso {
    padding: 100px 0;
}

.conteudo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.conteudo-item {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s ease;
}

.conteudo-item:hover {
    transform: translateY(-10px);
    border-color: #D4AF37;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.conteudo-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.conteudo-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #D4AF37;
}

.conteudo-item p {
    color: #999;
    font-size: 15px;
}

/* Como Funciona */
.como-funciona {
    padding: 100px 0;
    background: #1a1a1a;
}

.funciona-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.funciona-card {
    text-align: center;
    padding: 40px 30px;
}

.funciona-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 900;
    margin: 0 auto 25px;
}

.funciona-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #D4AF37;
}

.funciona-card p {
    color: #999;
    font-size: 15px;
}

/* Benefícios */
.beneficios {
    padding: 100px 0;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.beneficio-card {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s ease;
}

.beneficio-card:hover {
    transform: translateY(-5px);
    border-color: #D4AF37;
}

.beneficio-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.beneficio-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.beneficio-card p {
    color: #999;
    font-size: 15px;
}

/* Depoimentos */
.depoimentos {
    padding: 100px 0;
    background: #1a1a1a;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.depoimento-card {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 35px;
    transition: all 0.3s ease;
}

.depoimento-card:hover {
    transform: translateY(-5px);
    border-color: #D4AF37;
}

.depoimento-stars {
    color: #D4AF37;
    font-size: 24px;
    margin-bottom: 20px;
}

.depoimento-texto {
    color: #ccc;
    font-size: 16px;
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.7;
}

.depoimento-autor {
    display: flex;
    align-items: center;
    gap: 15px;
}

.autor-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 2px solid #D4AF37;
}

.autor-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.autor-info strong {
    display: block;
    color: #fff;
    font-size: 16px;
}

.autor-info span {
    color: #999;
    font-size: 14px;
}

/* Informações */
.informacoes {
    padding: 100px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.info-card {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: #D4AF37;
}

.info-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #D4AF37;
}

.info-card p {
    color: #999;
    font-size: 15px;
    line-height: 1.6;
}

/* CTA Final */
.cta-final {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.2;
}

.cta-text {
    font-size: 20px;
    color: #ccc;
    margin-bottom: 40px;
    line-height: 1.7;
}

.btn-cta-large {
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    color: #000;
    border: none;
    padding: 25px 50px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.5);
}

.btn-cta-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.7);
}

.btn-cta-large span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.btn-cta-large strong {
    font-size: 20px;
}

.btn-cta-large small {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.8;
}

.cta-garantia {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    color: #4CAF50;
    font-size: 15px;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: #0f0f0f;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.faq-item {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #D4AF37;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.faq-item h3 {
    color: #D4AF37;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.faq-item p {
    color: #ccc;
    font-size: 15px;
    line-height: 1.7;
}

/* Footer */
.footer {
    background: #000;
    padding: 60px 0 40px;
    border-top: 2px solid #D4AF37;
}

.footer-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.footer-content h3 {
    color: #D4AF37;
    font-size: 22px;
    margin: 20px 0 15px;
}

.footer-logo {
    width: auto;
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
}

.footer-content p {
    color: #999;
    margin: 10px 0;
    line-height: 1.6;
}

.footer-content p strong {
    color: #D4AF37;
    display: block;
    margin-top: 20px;
    margin-bottom: 5px;
}

/* Animações */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.5;
    }
}

/* Responsivo */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .sobre-content {
        grid-template-columns: 1fr;
    }
    
    .video-curso-container iframe {
        height: 200px;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .btn-cta-primary, .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }

    .btn-cta-large {
        width: 100%;
        justify-content: center;
        padding: 20px 30px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-text {
        font-size: 16px;
    }
}

/* Botão Voltar ao Topo */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    color: #000;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.7);
}

.back-to-top:active {
    transform: translateY(-2px);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}
