/* Estilos gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #067238;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.logo {
    max-width: 200px;
    margin-bottom: 15px;
}

h1 {
    font-size: 24px;
    color: #067238;
    margin-bottom: 10px;
}

h2 {
    font-size: 22px;
    color: #067238;
    margin-bottom: 15px;
}

h3 {
    font-size: 18px;
    color: #067238;
    margin-bottom: 10px;
}

p {
    margin-bottom: 15px;
    color: #555;
}

.subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.form-container {
    padding: 20px;
}

.logo-container {
    text-align: center;
    margin-bottom: 20px;
}

/* Barra de progresso */
.progress-bar-container {
    margin: 30px 0;
}

.progress-bar {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 10px;
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 2px;
    width: 100%;
    background-color: #ddd;
    z-index: 1;
}

.progress-step {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    position: relative;
    z-index: 2;
}

.progress-step.active {
    background-color: #067238;
}

.progress-labels {
    display: flex;
    justify-content: space-between;
}

.progress-label {
    font-size: 12px;
    color: #777;
    text-align: center;
    width: 33.33%;
}

.progress-label.active {
    color: #067238;
    font-weight: bold;
}

/* Formulário */
.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

input, select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

input:focus, select:focus {
    outline: none;
    border-color: #067238;
}

.phone-input {
    display: flex;
    align-items: center;
}

.country-code {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 12px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-weight: bold;
}

.phone-input input {
    border-radius: 0 4px 4px 0;
    border-left: none;
}

.location-message, .education-message, .motivation-message {
    margin-top: 5px;
    padding: 10px;
    background-color: #f0f7f4;
    border-radius: 4px;
    color: #067238;
    display: none;
}

.btn-primary {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: #067238;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 20px;
    text-align: center;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: #045a2d;
}

.benefits {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit-item i {
    color: #067238;
}

.fa-star {
    color: #ffc107;
}

/* Estilos para a página de instituição */
.institution-container {
    margin: 30px 0;
}

.institution-form {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.user-info {
    background-color: #f0f7f4;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
}

.user-info p {
    margin-bottom: 8px;
}

.user-info span {
    font-weight: bold;
    color: #067238;
}

/* Simulador de ROI */
.roi-simulator {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.roi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 15px;
}

.roi-item {
    text-align: center;
}

.roi-label {
    font-size: 14px;
    color: #777;
    margin-bottom: 5px;
}

.roi-value {
    font-size: 18px;
    font-weight: bold;
    color: #067238;
}

/* Estilos para a página de oferta */
.offer-header {
    text-align: center;
    margin-bottom: 30px;
}

.discount-badge {
    display: inline-block;
    background-color: #ff5252;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    margin: 10px 0;
}

.coupon-code {
    background-color: #fff9e6;
    border: 2px dashed #ffc107;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    margin: 20px 0;
}

.coupon-code h3 {
    color: #ff5252;
    margin-bottom: 5px;
}

.countdown-container {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    text-align: center;
}

.countdown-title {
    margin-bottom: 15px;
    color: #555;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.countdown-item {
    background-color: #067238;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    min-width: 60px;
}

.limited-spots {
    color: #ff5252;
    font-weight: bold;
    text-align: center;
    margin: 10px 0;
}

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.feature-icon {
    font-size: 24px;
    color: #067238;
    min-width: 30px;
}

.feature-text h4 {
    margin-bottom: 5px;
    color: #333;
}

.feature-text p {
    font-size: 14px;
    color: #666;
}

.course-description {
    background-color: #f0f7f4;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.roi-display {
    display: flex;
    justify-content: space-between;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.roi-column {
    text-align: center;
    flex: 1;
}

.roi-amount {
    font-size: 24px;
    font-weight: bold;
    margin: 10px 0;
}

.roi-investment {
    color: #ff5252;
}

.roi-return {
    color: #067238;
}

.roi-payback {
    font-weight: bold;
    text-align: center;
    margin: 10px 0;
}

.testimonials {
    margin: 30px 0;
}

.testimonial-item {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    position: relative;
}

.testimonial-item::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 40px;
    color: #ddd;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 10px;
    padding-left: 20px;
}

.testimonial-author {
    font-weight: bold;
    text-align: right;
}

.faq-section {
    margin: 30px 0;
}

.faq-item {
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 15px;
    background-color: #f9f9f9;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 20px;
    color: #067238;
}

.faq-answer {
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #fff;
}

.faq-item.active .faq-question::after {
    content: '-';
}

.faq-item.active .faq-answer {
    padding: 15px;
    max-height: 500px;
}

.stats-footer {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    text-align: center;
}

.stat-item {
    font-weight: bold;
    color: #067238;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    h1 {
        font-size: 20px;
    }
    
    h2 {
        font-size: 18px;
    }
    
    .progress-label {
        font-size: 10px;
    }
    
    .roi-grid {
        grid-template-columns: 1fr;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .roi-display {
        flex-direction: column;
        gap: 20px;
    }
}
