:root {
    --primary-color: #f1d06a;
    --primary-dark: #e6c45a;
    --secondary-color: #000000;
    --light-color: #ffffff;
    --text-color: #333333;
    --light-gray: #f5f5f5;
    --dark-gray: #444444;
    
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Processo Page Styles */
.processo-page {
    padding-top: 80px;
}

.processo-hero {
    color: var(--text-color);
    text-align: center;
    padding: 100px 0;
}

.processo-hero h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.processo-hero h2 span {
    color: var(--primary-color);
}

.processo-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Section Titles */
.section-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    max-width: 800px;
}

.section-title span {
    color: var(--primary-color);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: var(--dark-gray);
}

/* Documentos Section */
.documentos-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.documentos-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.documentos-section .section-title, .documentos-section .section-subtitle {
    align-self: center;
}

.documentos-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(300px, 1fr));
    gap: 30px;
}

.documento-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.documento-card:hover {
    transform: translateY(-10px);
}

.doc-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.documento-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.documento-card p {
    color: var(--dark-gray);
}

/* Exames Section */
.exames-section {
    padding: 80px 0;
    background-color: white;
}

.exames-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.exames-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.exame-item {
    background-color: var(--light-gray);
    border-radius: 10px;
    padding: 30px;
    transition: var(--transition);
}

.exame-item:hover {
    background-color: var(--primary-color);
}

.exame-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.exame-header i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.exame-item:hover .exame-header i {
    color: var(--secondary-color);
}

.exame-header h3 {
    font-size: 1.4rem;
}

.exame-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    font-weight: 500;
}

/* Curso Section */
.curso-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.curso-section .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.curso-content {
    max-width: 800px;
    width: 100%;
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: var(--box-shadow);
    position: relative;
}

.curso-content::after {
    content: "";
    width: 105%;
    height: 105%;
    background: linear-gradient(45deg var(--primary-color) 40%, transparent 60%);
    position: absolute;
    top: 0px;
    left: 0px;
}

.curso-info {
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.info-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
    width: 25px;
    text-align: center;
}

.horarios h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.horario-option {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding-left: 10px;
}

.horario-option i {
    color: var(--primary-color);
    width: 25px;
    text-align: center;
}

/* Taxas Section */
.taxas-section {
    padding: 80px 0;
    background-color: white;
}

.taxas-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.taxas-section .section-title {
    max-width: 800px;
    width: 100%;
}

.taxas-section .section-subtitle {
    max-width: 800px;
    width: 100%;
}

.taxas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 800px;
    width: 100%;
    margin-bottom: 30px;
}

.taxa-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background-color: var(--light-gray);
    border-radius: 10px;
    transition: var(--transition);
}

.taxa-item:hover {
    background-color: var(--primary-color);
}

.taxa-item i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.taxa-item:hover i {
    color: var(--secondary-color);
}

.taxa-obs {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 800px;
    margin: 0 auto;
    padding: 15px;
    background-color: #fff9e6;
    border-radius: 5px;
}

.taxa-obs i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Aulas Section */
.aulas-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.aulas-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.aulas-section .section-title {
    max-width: 850px;
}

.aulas-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.aula-tipo {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.aula-tipo:hover {
    transform: translateY(-10px);
}

.tipo-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.tipo-header i {
    font-size: 2rem;
    color: var(--primary-color);
}

.tipo-header h3 {
    font-size: 1.4rem;
}

/* WhatsApp Button */
.whatsapp-button {
    background-color: #25D366;
}

.whatsapp-button:hover {
    background-color: #128C7E;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .processo-hero h2 {
        font-size: 2.2rem;
    }
    
    .processo-hero p {
        font-size: 1.1rem;
    }

    .aulas-content {
        width: 100%;
    }

    .documentos-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .curso-content {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .processo-hero {
        padding: 80px 0;
    }
    
    .processo-hero h2 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }

    .cta-box {
        padding: 1.5rem;
    }
    
    .documentos-grid,
    .exames-content,
    .aulas-content {
        grid-template-columns: 1fr;
    }
}