/* ======================================================
   EAD Programação - Go Up Treinamentos
   ====================================================== */

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utility Classes */
.text-blue-sales {
    color: #1A73E8;
}

.text-green {
    color: #22c55e;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    text-align: center;
}

.btn-primary {
    background: #1A73E8;
    color: white;
}

.btn-primary:hover {
    background: #145CB5;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: #1e293b;
}

.btn-white {
    background: white;
    color: #1A73E8;
}

.btn-white:hover {
    background: #f1f5f9;
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-white:hover {
    background: white;
    color: #1A73E8;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 700;
}

.btn-full {
    width: 100%;
}

/* Header */
.header {
    background: #1e293b;
    color: white;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1A73E8;
}

.logo img {
    height: 35px;
    vertical-align: middle;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #1e293b 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.market-badge {
    background: #1A73E8;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #cbd5e1;
    margin-bottom: 32px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-hero {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.old-price {
    background: #dc2626;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: line-through;
    opacity: 0.8;
}

.new-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #22c55e;
}

.discount-badge {
    background: #22c55e;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    margin-left: 10px;
}

.installments {
    font-size: 1.5rem;
    color: #cbd5e1;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 16px;
}

.hero-disclaimer {
    font-size: 14px;
    color: #94a3b8;
}

/* Problem Section */
.problem-section {
    padding: 80px 0;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.problem-card {
    background: #fef2f2;
    border: 2px solid #fecaca;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
}

.problem-icon {
    color: #1A73E8;
    font-size: 3rem;
    margin-bottom: 16px;
}

.problem-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1e293b;
}

.problem-card p {
    color: #64748b;
}

.problem-solution {
    text-align: center;
}

.problem-solution h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
}

/* Solution Section */
.solution-section {
    padding: 80px 0;
    background: white;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.solution-card {
    background: #f0fdf4;
    border: 2px solid #bbf7d0;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.solution-icon {
    color: #22c55e;
    font-size: 3rem;
    margin-bottom: 16px;
}

.solution-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1e293b;
}

.solution-card p {
    color: #64748b;
}

/* Courses Section */
.courses-section {
    padding: 80px 0;
    background: #f8fafc;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.course-card {
    background: white;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.course-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.course-icon {
    color: #1A73E8;
    font-size: 2rem;
    margin-right: 16px;
}

.course-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

.course-hours {
    background: #e2e8f0;
    color: #475569;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.course-card p {
    color: #64748b;
}

/* Bonus Section */
.bonus-section {
    padding: 80px 0;
    background: #1A73E8;
    color: white;
    text-align: center;
}

.bonus-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 32px;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 800px;
    margin: 0 auto 32px;
}

.bonus-card {
    background: white;
    color: #1e293b;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
}

.bonus-icon {
    color: #1A73E8;
    font-size: 3rem;
    margin-bottom: 16px;
}

.bonus-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.bonus-card p {
    color: #64748b;
}

.bonus-warning {
    background: #dc2626;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
}

/* Included Section */
.included-section {
    padding: 80px 0;
    background: white;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.included-card {
    border: 2px solid #bbf7d0;
    border-radius: 12px;
    padding: 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.included-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.included-icon {
    color: #22c55e;
    font-size: 3rem;
    margin-bottom: 16px;
}

.included-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1e293b;
}

.included-card ul {
    list-style: none;
}

.included-card li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: #64748b;
}

.included-card li i {
    color: #22c55e;
    margin-right: 8px;
    font-size: 14px;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    text-align: center;
}

.pricing-badge {
    background: #dc2626;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 32px;
}

.pricing-card {
    background: white;
    color: #1e293b;
    border-radius: 16px;
    padding: 48px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.old-price-large {
    color: #dc2626;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: line-through;
    margin-bottom: 8px;
}

.new-price-large {
    font-size: 3rem;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 8px;
}

.payment-info {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 16px;
}

.installment-info {
    color: #1A73E8;
    font-size: 1.5rem;
    font-weight: 700;
}

.pricing-features {
    margin-bottom: 32px;
}

.feature {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    font-size: 16px;
}

.feature i {
    color: #22c55e;
    margin-right: 8px;
}

.pricing-disclaimer {
    font-size: 14px;
    color: #64748b;
    margin-top: 16px;
}

/* Access Time Section (Improved) */
.access-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.access-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.access-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.access-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.access-card h3 i {
    color: #1A73E8;
    font-size: 1.75rem;
}

.access-card p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.access-card p:last-child {
    margin-bottom: 0;
}

.access-highlight {
    background: #f0fdf4;
    border-left: 4px solid #22c55e;
    padding: 16px 20px;
    border-radius: 0 8px 8px 0;
    margin: 20px 0;
}

.access-highlight p {
    color: #166534;
    font-weight: 500;
    margin: 0;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: #f8fafc;
}

.about-card {
    background: white;
    border-radius: 12px;
    padding: 48px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
}

.about-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.about-text p {
    color: #64748b;
    margin-bottom: 24px;
}

.about-stats {
    display: flex;
    gap: 32px;
}

.stat {
    text-align: center;
}

.stat-number {
    background: #1A73E8;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    margin-bottom: 4px;
}

.stat-label {
    color: #64748b;
    font-size: 14px;
}

.instructor-info {
    text-align: center;
}

.instructor-avatar {
    background: linear-gradient(135deg, #1A73E8, #145CB5);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 16px;
}

.instructor-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

.instructor-info p {
    color: #64748b;
    margin-bottom: 8px;
}

.instructor-info span {
    font-size: 14px;
    color: #64748b;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: #1A73E8;
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.final-cta p {
    font-size: 1.25rem;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.final-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
}

.final-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
}

.final-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.final-feature i {
    font-size: 16px;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 32px 0;
    text-align: center;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1A73E8;
    margin-bottom: 8px;
}

.footer-logo img {
    height: 40px;
}

.footer p {
    color: #94a3b8;
    margin-bottom: 8px;
}

.footer-copyright {
    font-size: 14px;
    color: #64748b;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float i {
    color: white;
    font-size: 24px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .pricing-hero {
        flex-direction: column;
        gap: 8px;
    }

    .new-price {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-large {
        width: 100%;
        max-width: 300px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-stats {
        justify-content: center;
    }

    .final-buttons {
        flex-direction: column;
        align-items: center;
    }

    .final-features {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .access-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .new-price-large {
        font-size: 2.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

/* Badge Animation */
.badge {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}