@font-face {
    font-family: 'Inter';
    src: url(./Inter-Regular.ttf);
}

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

body {
    font-family: 'Inter';
    color: #003366; /* Cor de texto padrão (Azul UNASP) */
    background-color: #f7f5f5;
}

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

/* --- Botões --- */
.btn {
    display: inline-block;
    background-color: #003366; /* Azul UNASP */
    color: #ffffff;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin-top: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.btn:hover {
    background-color: #F05025; /* Laranja UNASP */
    transform: scale(1.05);
}

/* Estilo de botão personalizado da imagem */
.btn.btn-yellow {
    background-color: #fcc53b;
    color: #333333;
    font-weight: 600;
}

.btn.btn-yellow:hover {
    background-color: #003366;
    transform: scale(1.05);
}


/* --- Seção 1 (Hero) --- */
.secao-1 {
    background: url('images/BG-1.png') no-repeat center center/cover;
 
    padding: 60px 0;
    overflow: hidden;
}

.secao-1-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.secao-1-image {
    flex: 0 0 40%;
    align-self: flex-end;
    margin-bottom: -90px;
    position: relative;

}

.secao-1-texto {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.texto-e-imagem {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-bottom: 25px;
}

.logo {
    width: 160px;
    /* margin-right: 40px; */
    align-items: flex-end;
    /* margin-bottom: 190px; */
}

.titulo-imagem {
    width: 100%;
}

.texto-secao-1 {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-top: 20px;
    font-family: 'Inter';
}

.baixe {
    font-weight: bold;
    color: #082871;
}

.secao-1-texto p {
    font-size: 1.2rem;
    max-width: 450px;
    text-align: right;
    margin: 0 0 20px 0;
    color: #082871;
    font-family: 'Inter';
}

/* Estilos para o novo bloco de informações de matrícula */
.texto-secao-1 {
    color: #003366;
}

.matricula-contact-container {
    display: flex;
    align-items: center;
    gap: 25px;
}

.qr-code-matricula {
    width: 110px;
    height: 110px;
    flex-shrink: 0;
    border-radius: 8px;
    padding: 5px;
}

.matricula-info-wrapper {
    text-align: right;
    /* border-left: 2px solid rgba(255, 255, 255, 0.8); */
    padding-left: 25px;
    margin-left: 0; 
}

.matricula-info-wrapper p {
    color: #ffffff;
    margin-bottom: 5px;
}

.matricula-titulo {
    font-family: 'Inter';
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
}

.matricula-site {
    font-family: 'Inter';
    color: #8ED1FC; /* MODIFIÉ */
    font-size: 1.2rem;
    font-weight: 400;
    margin: 0 !important;
    line-height: 1.6;
}
.matricula-telefone {
    font-family: 'Inter';
    color: #ffffff; /* MODIFIÉ */
    font-size: 1.2rem;
    font-weight: 400;
    margin: 0 !important;
    line-height: 1.6;
}

/* --- Seção de Passos --- */
.steps-section {
    padding: 80px 0;
    text-align: center;
    background-color: #ffffff;
}

.steps-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    text-align: left;
}

.step-card {
    background-color: #f0f8ff; 
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card .edupay {
    color: #003366;
    text-decoration: none;
    font-weight: 800;
}
.step-card a strong:hover {
    text-decoration: underline;
    color: #F05025;
}
/* .step-card .edupay:hover {
    color: #F05025;
} */

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 51, 102, 0.1);
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: #FBC90D;
    color: #003366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
}

.step-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}
.step-card p strong {
    color: #003366;
}

/* --- Seção de Tutoriais (NOVO DESIGN) --- */
.tutorials-section {
    padding: 80px 0;
    background-color: #f0f4f8; 
    text-align: center;
}

.tutorials-section h2 {
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: #555;
    max-width: 650px;
    margin: 0 auto 60px auto;
    line-height: 1.6;
}

.tutorials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.tutorial-card {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 51, 102, 0.08);
    overflow: hidden;
    text-align: left;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tutorial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 51, 102, 0.12);
}

.tutorial-video {
    aspect-ratio: 16 / 9;
    width: 100%;
}

.tutorial-video iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.tutorial-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tutorial-card-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #003366;
    margin-bottom: 10px;
}

.tutorial-card-content p {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 0;
}

/* --- Seção de Avisos Importantes --- */
.important-notes-section {
    background-color: #FBC90D;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23cb9a19' fill-opacity='0.2' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    padding: 80px 0;
    text-align: center;
}

.important-notes-section h2 {
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.important-notes-section ul {
    list-style: none;
    padding: 0;
    display: inline-block;
    text-align: left;
}

.important-notes-section li {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* ADICIONADO: Regra para posicionar o botão abaixo da lista nesta seção */
.important-notes-section .btn {
    display: block;
    width: fit-content;
    margin: 40px auto 0;
}

/* --- Seção do Rodapé --- */
.main-footer {
    background-color: #003366;
    color: #ffffff;
    padding: 80px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.footer-column h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    margin-bottom: 15px;
}

.contact-list a {
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    transition: opacity 0.3s;
}

.contact-list a:hover {
    opacity: 0.8;
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
    fill: #25D366;
}

.logo-info {
    text-align: right;
}

.footer-logo-img {
    max-width: 250px;
    height: auto;
}

.sub-footer {
    background-color: #002244;
    color: #aaccff;
    padding: 20px 0;
    text-align: center;
    font-size: 12px;
}

/* --- Design Responsivo --- */
@media (max-width: 992px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
    .tutorials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .logo-info {
        text-align: center;
    }
    .contact-list a {
        justify-content: center;
    }
    .footer-column {
        margin-bottom: 30px;
    }
}

@media (max-width: 900px) {
    .secao-1 {
        min-height: 100vh;
        height: -webkit-fill-available;
        height: 100vh;
        padding: 0;
        display: flex;
        overflow: hidden;
    }

    .secao-1-container {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        position: relative;
        width: 100%;
        padding: 40px 20px 0;
    }

    .secao-1-texto {
        order: 1;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        z-index: 10;
    }
    
    .texto-e-imagem {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 25px;
    }
    
    .logo {
        width: 150px;
        margin-bottom: 30px;
    }
    
    .titulo-imagem {
        width: 100%;
        max-width: 430px;
    }
    
    .texto-secao-1 {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 0;
    color: #003366;
    }

    .secao-1-texto p {
        font-size: 1.1rem;
        line-height: 1.5;
        text-align: center;
        max-width: 380px;
        color: white;
        font-family: 'Inter';
        margin: 0 0 30px 0;
    }
    
    .baixe {
        color: white;
        font-weight: bold;
    }
    
    .secao-1 .btn {
        margin-top: 0;
    }

    .secao-1-image {
        order: 2;
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60%;
        max-width: 450px;
        margin: 0;
        z-index: 5;
    }

    .secao-1-image img {
        width: 100%;
        display: block;
        height: auto;
    }

    /* Estilos responsivos para o bloco de matrícula */
    .matricula-contact-container .vector-smart-object,
    .matricula-contact-container .qr-code-matricula {
        display: none;
    }

    .matricula-contact-container {
        flex-direction: column;
        gap: 20px;
        margin-top: 30px;
    }
    
    .matricula-info-wrapper {
        border-left: none;
        padding-left: 0;
        margin-left: 0;
        text-align: center;
        margin-top: 0; /* Movido para o container pai */
    }

    .matricula-titulo {
        font-size: 2.5rem;
    }

    .matricula-site,
    .matricula-telefone {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    h2 {
        font-size: 28px !important;
    }
    .steps-section, .tutorials-section, .important-notes-section, .main-footer {
        padding: 60px 0;
    }
    .tutorials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .step-card {
        flex-direction: column;
        text-align: center;
    }
    .important-notes-section li {
        font-size: 16px;
    }
    .btn {
        width: 100%;
        padding: 15px 20px;
    }
    .footer-column h3 {
        font-size: 18px;
    }
}