/* Estilos Gerais */
:root {
    --primary-color: #0a2342;
    --secondary-color: #d4af37;
    --accent-color: #1d70b8;
    --text-color: #333;
    --light-text: #fff;
    --background-light: #f8f9fa;
    --background-dark: #0a2342;
    --border-color: #dee2e6;
    --success-color: #28a745;
    --error-color: #dc3545;
    --student-color: #4CAF50;
}

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

body {
    font-family: 'Roboto', 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

a {
    text-decoration: none;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

.btn-primary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

section {
    padding: 80px 0;
}

/* Header */
header {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 20px 0;
    text-align: center;
}

header h1 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

header .tagline {
    font-size: 1.2rem;
    opacity: 0.9;
    color: var(--light-text);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a365d 100%);
    color: var(--light-text);
    padding: 60px 0;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero h2 {
    color: var(--secondary-color);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.highlight-text {
    background-color: rgba(212, 175, 55, 0.2);
    padding: 10px 15px;
    border-left: 4px solid var(--secondary-color);
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 50px;
}

.detail-item i {
    color: var(--secondary-color);
}

/* Countdown Section */
.countdown {
    background-color: var(--background-light);
    text-align: center;
    padding: 40px 0;
}

.countdown h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

#countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 1.5rem;
}

.countdown-item {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 20px;
    border-radius: 10px;
    min-width: 100px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.countdown-item span:first-child {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    display: block;
}

.countdown-info {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* About Section */
.about {
    text-align: center;
}

.about h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 1.8rem;
}

.benefit-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

/* Instructors Section */
.instructors {
    background-color: var(--background-light);
}

.instructors h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
}

.instructors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.instructor-profile {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.instructor-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.instructor-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.instructor-title {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.instructor-bio {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Curriculum Section */
.curriculum h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
}

.curriculum-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.curriculum-item h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.curriculum-item h3 i {
    color: var(--secondary-color);
}

.curriculum-item ul {
    list-style-type: none;
    padding-left: 35px;
}

.curriculum-item ul li {
    position: relative;
    padding: 8px 0;
}

.curriculum-item ul li:before {
    content: "•";
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: -15px;
}

/* Registration Section */
.registration {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a365d 100%);
    color: var(--light-text);
    text-align: center;
}

.registration h2 {
    color: var(--secondary-color);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.registration-info {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

/* Opções de Pagamento */
.payment-options {
    margin-bottom: 50px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.payment-options h3 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.payment-methods {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.payment-method {
    flex: 1;
    min-width: 280px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease;
}

.payment-method:hover {
    transform: translateY(-5px);
}

.payment-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.payment-method h4 {
    color: var(--light-text);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.pix-key {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: 6px;
    margin: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: monospace;
    font-size: 1.1rem;
}

.copy-btn {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    border-radius: 4px;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.copy-btn:hover {
    background-color: #f0c14b;
}

.pix-values {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 6px;
    margin: 15px 0;
    border-left: 4px solid var(--secondary-color);
}

.pix-values p {
    margin: 5px 0;
    font-size: 1rem;
}

.pix-values p:first-child {
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

/* Novos estilos para os botões de pagamento */
.payment-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 15px 0;
}

.btn-payment {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-payment:hover {
    background-color: #f0c14b;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.student-btn {
    background-color: var(--student-color);
    color: var(--light-text);
    border: 1px solid #388E3C;
}

.student-btn:hover {
    background-color: #45a049;
}

.payment-note {
    font-size: 0.9rem;
    color: #ccc;
    margin-top: 15px;
}

.form-section {
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.form-section h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

#registration-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(29, 112, 184, 0.2);
}

.form-group.terms {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group.terms input {
    width: auto;
}

/* FAQ Section */
.faq {
    background-color: var(--background-light);
}

.faq h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
}

.faq-item {
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.2rem;
    margin-bottom: 0;
}

.faq-toggle {
    background-color: var(--primary-color);
    color: var(--light-text);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

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

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 1000px;
}

/* Footer */
footer {
    background-color: var(--background-dark);
    color: var(--light-text);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-info h3,
.footer-contact h3 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.footer-info p,
.footer-contact p {
    margin-bottom: 10px;
    opacity: 0.8;
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
    }
    
    .instructors-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .payment-methods {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 15px;
    }
    
    .countdown-item span:first-child {
        font-size: 2rem;
    }
    
    #registration-form {
        padding: 30px 20px;
    }
    
    .payment-options {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .hero-details {
        flex-direction: column;
        align-items: flex-start;
    }
    
    #countdown-timer {
        flex-wrap: wrap;
    }
    
    .countdown-item {
        flex: 1 0 40%;
    }
    
    .benefit-item {
        padding: 20px;
    }
    
    .pix-key {
        flex-direction: column;
        gap: 10px;
    }
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero, .about, .instructors, .curriculum, .registration, .faq {
    animation: fadeIn 1s ease-out;
}

/* Página de Agradecimento */
.thank-you {
    text-align: center;
    padding: 100px 0;
}

.thank-you h1 {
    color: var(--primary-color);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.thank-you p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.thank-you .icon {
    font-size: 5rem;
    color: var(--success-color);
    margin-bottom: 2rem;
}

.thank-you .btn-primary {
    margin-top: 1rem;
}

.course-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px 0;
    gap: 15px;
}

.course-details .detail-item {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 5px;
    margin: 5px;
}

.course-details .detail-item i {
    margin-right: 10px;
    color: var(--accent-color);
}

.cta-button {
    margin: 20px 0;
    text-align: center;
}

.course-info {
    background-color: var(--primary-color);
    color: var(--light-text);
    text-align: center;
    padding: 40px 0;
}

.course-info .course-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px 0;
    gap: 15px;
}

.course-info .detail-item {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 50px;
    margin: 5px;
}

.course-info .detail-item i {
    margin-right: 10px;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.course-info .detail-item span {
    font-size: 1.1rem;
    font-weight: 500;
}

.course-info .cta-button {
    margin: 30px 0 10px;
    text-align: center;
}

.course-info .btn-primary {
    font-size: 1.1rem;
    padding: 14px 35px;
}
