/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    color: white;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #F97316;
}

.header-cta {
    background: linear-gradient(135deg, #F97316, #EA580C);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.4);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.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 1000 100" fill="white" opacity="0.1"><polygon points="0,0 1000,0 1000,100 0,80"/></svg>') no-repeat bottom;
    background-size: cover;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-title .subtitle {
    display: block;
    font-size: 2.5rem;
    color: #F97316;
    margin-top: 0.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.price-section {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.price-original {
    text-align: center;
    margin-bottom: 1rem;
}

.price-original .label {
    font-size: 1rem;
    opacity: 0.8;
}

.price-original .value {
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: line-through;
    color: #FCA5A5;
}

.price-current {
    text-align: center;
    margin-bottom: 1rem;
}

.price-current .label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.price-current .value {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: #10B981;
    line-height: 1;
}

.price-current .installments {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

.discount-badge {
    background: linear-gradient(135deg, #EF4444, #DC2626);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse 2s infinite;
}

.economy-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.2);
    padding: 1rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.economy-highlight i {
    font-size: 1.5rem;
    margin-right: 0.5rem;
    color: #10B981;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.image-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(0,0,0,0.8);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.stats {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat .number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #F97316;
}

.stat .label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #F97316, #EA580C);
    color: white;
    padding: 20px 40px;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.6);
}

.cta-button i {
    margin-right: 10px;
}

/* Benefícios Section */
.beneficios {
    padding: 80px 0;
    background: #F8FAFC;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1E3A8A;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #64748B;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.beneficio-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.beneficio-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.beneficio-icon i {
    font-size: 2rem;
    color: white;
}

.beneficio-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1E3A8A;
}

.beneficio-item p {
    color: #64748B;
    line-height: 1.6;
}

/* Cursos Section */
.cursos {
    padding: 80px 0;
    background: white;
}

.cursos-categories {
    margin-bottom: 4rem;
}

.category {
    margin-bottom: 4rem;
    background: #F8FAFC;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.category-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #F97316, #EA580C);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
}

.category-icon i {
    font-size: 1.8rem;
    color: white;
}

.category-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1E3A8A;
    margin-bottom: 0.3rem;
}

.category-count {
    color: #64748B;
    font-weight: 500;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.course-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.course-item:hover {
    transform: translateY(-3px);
}

.course-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1E3A8A;
    margin-bottom: 0.5rem;
}

.course-hours {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #10B981;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.course-item p {
    color: #64748B;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cta-after-courses {
    text-align: center;
    margin-top: 3rem;
}

/* Urgência Section */
.urgencia {
    padding: 80px 0;
    background: linear-gradient(135deg, #EF4444, #DC2626);
    color: white;
    text-align: center;
}

.urgencia-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.urgencia-text {
    font-size: 1.3rem;
    margin-bottom: 3rem;
}

.countdown-container {
    margin-bottom: 3rem;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.countdown-item {
    background: rgba(255,255,255,0.2);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    min-width: 100px;
}

.countdown-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.countdown-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.urgencia-warning {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.vagas-restantes {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    max-width: 500px;
    margin: 0 auto 3rem;
}

.vagas-restantes h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.progress-bar {
    background: rgba(255,255,255,0.3);
    height: 20px;
    border-radius: 10px;
    overflow: hidden;
    margin: 1rem 0;
}

.progress-fill {
    background: #F97316;
    height: 100%;
    border-radius: 10px;
    transition: width 0.3s ease;
}

.progress-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Garantia Section */
.garantia {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.garantia-content {
    max-width: 600px;
    margin: 0 auto;
}

.garantia-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.garantia-badge i {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.garantia h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1E3A8A;
}

.garantia p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #64748B;
}

.garantia-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature i {
    color: #10B981;
    font-size: 1.2rem;
}

/* Depoimentos Section */
.depoimentos {
    padding: 80px 0;
    background: #F8FAFC;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.depoimento-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.depoimento-content {
    padding: 2rem;
}

.stars {
    margin-bottom: 1rem;
}

.stars i {
    color: #F59E0B;
    font-size: 1.2rem;
}

.depoimento-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #64748B;
    line-height: 1.6;
}

.depoimento-author strong {
    color: #1E3A8A;
    font-weight: 600;
}

.depoimento-author span {
    display: block;
    color: #64748B;
    font-size: 0.9rem;
    margin-top: 0.3rem;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: white;
}

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

.faq-item {
    background: #F8FAFC;
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border-radius: 15px;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1E3A8A;
}

.faq-question i {
    color: #64748B;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #64748B;
    line-height: 1.6;
}

/* CTA Final Section */
.cta-final {
    padding: 80px 0;
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.opcoes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.opcao {
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.opcao-ruim {
    background: rgba(239, 68, 68, 0.2);
    border: 2px solid #EF4444;
}

.opcao-boa {
    background: rgba(16, 185, 129, 0.2);
    border: 2px solid #10B981;
}

.opcao h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.beneficios-finais {
    margin-bottom: 3rem;
}

.beneficios-finais h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.beneficios-lista {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.beneficio-final {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-align: left;
}

.beneficio-final i {
    color: #10B981;
    font-size: 1.2rem;
}

.cta-container {
    margin-bottom: 3rem;
}

.cta-button-final {
    display: inline-block;
    background: linear-gradient(135deg, #F97316, #EA580C);
    color: white;
    padding: 25px 50px;
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.cta-button-final:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(249, 115, 22, 0.6);
}

.cta-button-final i {
    margin-right: 10px;
}

.cta-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 1rem;
}

.ultima-mensagem h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.ultima-mensagem p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background: #1F2937;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #F97316;
}

.contact-info, .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.contact-item i {
    color: #F97316;
    width: 20px;
}

.footer-links a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #F97316;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9CA3AF;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease;
}

.floating-cta.show {
    opacity: 1;
    transform: translateY(0);
}

.floating-cta a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #F97316, #EA580C);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.floating-cta a:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.6);
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-title .subtitle {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .beneficios-grid {
        grid-template-columns: 1fr;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .countdown {
        gap: 1rem;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 1rem;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .opcoes {
        grid-template-columns: 1fr;
    }
    
    .beneficios-lista {
        grid-template-columns: 1fr;
    }
    
    .cta-button-final {
        padding: 20px 30px;
        font-size: 1.2rem;
    }
    
    .floating-cta {
        bottom: 10px;
        right: 10px;
    }
    
    .floating-cta a {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .garantia-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .depoimentos-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-title .subtitle {
        font-size: 1.5rem;
    }
    
    .price-current .value {
        font-size: 2.5rem;
    }
    
    .cta-button {
        padding: 15px 25px;
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 0.8rem;
    }
    
    .countdown-number {
        font-size: 1.8rem;
    }
    
    .cta-button-final {
        padding: 18px 25px;
        font-size: 1.1rem;
    }
    
    .stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .category-icon {
        margin-right: 0;
    }
}

