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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
}

.hero {
    width: 100%;
    height: 100vh;
    background-image: url('images/fundohero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0 0px;
}

.hero-content {
    display: flex;
    gap: 0px;
    max-width: 70%;
    width: 100%;
    align-items: center;
    z-index: 2;
}

/* COLUNA ESQUERDA - NOVA */
.hero-coluna-esquerda {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
}

.hero-img-esquerda {
    width: 450px;
    height: auto;
}

.hero-botoes-esquerda {
    display: flex;
    flex-direction: column;
    padding-left: 10px;
    gap: 15px;
    width: 100%;
}

.hero-btn {
    display: block;
    transition: transform 0.3s ease;
}

.hero-btn:hover {
    transform: scale(1.05);
}

.hero-btn img {
    width: 280px;
    height: auto;
    display: block;
}

/* COLUNA DIREITA - NOVA */
.hero-coluna-direita {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
    align-self: flex-start;
    margin-top: 80px;
    padding-left: 40px;
}

.hero-titulo-novo {
    font-family: 'Asap', sans-serif;
    font-size: 2rem;
    font-weight: 400;
    color: white;
    line-height: 1.3;
}

.hero-destaque {
    font-weight: 700;
    color: #fb961a;
}

.hero-logo-branca {
    width: 280px;
    height: auto;
}

/* COLUNA 1 */
.hero-coluna1 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-titulo {
    display: flex;
    flex-direction: column;
    font-family: 'Dela Gothic One', sans-serif;
    color: white;
    line-height: 0.9;
    text-transform: uppercase;
}

.titulo-linha1 {
    font-size: 3.5rem;
}

.titulo-linha2 {
    font-size: 5rem;
}

.titulo-linha3 {
    font-size: 7rem;
}

.hero-subtitulo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: white;
    letter-spacing: 2px;
}

.hero-descricao {
    display: flex;
    flex-direction: column;
    font-family: 'Dela Gothic One', sans-serif;
    color: white;
    line-height: 1;
}

.descricao-linha1 {
    font-size: 2.5rem;
}

.descricao-linha2 {
    font-size: 4rem;
}

/* COLUNA 2 */
.hero-coluna2 {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: flex-start;
}

.hero-logo {
    width: 280px;
    height: auto;
}

.hero-texto {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: white;
    max-width: 350px;
    line-height: 1.5;
}

.hero-texto strong {
    font-weight: 700;
}

.hero-botoes {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-btn {
    display: block;
    transition: transform 0.3s ease;
}

.hero-btn:hover {
    transform: scale(1.05);
}

.hero-btn img {
    width: 280px;
    height: auto;
    display: block;
}

.hero-alunos {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100%;
    width: auto;
    object-fit: contain;
    object-position: bottom right;
    z-index: 1;
}

/* SEÇÃO FORMS */
.forms {
    width: 100%;
    min-height: 100vh;
    background-color: #193e87;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px;
}

.forms-content {
    display: flex;
    gap: 80px;
    max-width: 1400px;
    width: 100%;
    align-items: center;
}

/* COLUNA 1 - ALUNO E TEXTO */
.forms-coluna1 {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.forms-aluno {
    width: 400px;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
}

.forms-texto {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.forms-texto p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: white;
    line-height: 1.6;
}

.forms-texto strong {
    font-weight: 700;
}

/* COLUNA 2 - FORMULÁRIO */
.forms-coluna2 {
    flex: 1;
}

.forms-formulario {
    background: white;
    border-radius: 30px;
    padding: 50px 45px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.forms-titulo {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #124d87;
    text-align: center;
    margin-bottom: 10px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #000;
}

.required {
    color: #ff0000;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #124d87;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23193e87' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.form-submit-btn {
    background: #193e87;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.form-submit-btn:hover:not(:disabled) {
    background: #124d87;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(25, 62, 135, 0.3);
}

.form-submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}

.forms-logo {
    width: 200px;
    height: auto;
    margin: 20px auto 0;
    display: block;
}

/* SEÇÃO INFO */
.info {
    width: 100%;
    min-height: 100vh;
    background-color: white;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 80px 0px 80px;
}

.info-fundo {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: auto;
    object-fit: cover;
    object-position: right center;
    z-index: 1;
}

.info-content {
    display: flex;
    gap: 80px;
    max-width: 1400px;
    width: 100%;
    align-items: center;
    z-index: 2;
}

/* COLUNA 1 - LOGO E TEXTO */
.info-coluna1 {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-logo {
    width: 350px;
    height: auto;
}

.info-texto {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-texto p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: black;
    line-height: 1.6;
}

.info-segmento {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fb961a;
}

.info-btn {
    display: block;
    width: fit-content;
    transition: transform 0.3s ease;
}

.info-btn:hover {
    transform: scale(1.05);
}

.info-btn img {
    width: 320px;
    height: auto;
    display: block;
}

/* COLUNA 2 - ALUNOS */
.info-coluna2 {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.info-alunos {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 30px;
    align-self: flex-end;
}

/* SEÇÃO LOCALIZAÇÃO */
.localizacao {
    width: 100%;
    min-height: 100vh;
    background-image: url('images/fundolocalizacao.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    padding: 80px;
}

.localizacao-titulo {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: white;
    text-align: center;
}

.localizacao-imagens {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    background: white;
    border-radius: 30px;
    padding: 40px;
    position: relative;
}

.localizacao-img-box {
    display: flex;
}

.localizacao-img {
    width: 350px;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    display: block;
}

.localizacao-mapicon {
    position: absolute;
    bottom: -20px;
    right: -45px;
    width: 120px;
    height: auto;
}

.localizacao-endereco {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-align: center;
    max-width: 900px;
    line-height: 1.6;
}

/* SEÇÃO CONTATO */
.contato {
    width: 100%;
    min-height: 100vh;
    background-image: url('images/contato.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px;
    gap: 40px;
}

.contato-logo {
    width: 400px;
    height: auto;
}

.contato-titulo {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #193e87;
    text-align: center;
    line-height: 1.2;
}

.contato-destaque {
    color: #fe9414;
    font-weight: 700;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
}

.contato-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contato-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.contato-texto {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #193e87;
}

.contato-negrito {
    font-weight: 700;
}

.contato-btn {
    display: block;
    width: fit-content;
    transition: transform 0.3s ease;
    margin-top: 20px;
}

.contato-btn:hover {
    transform: scale(1.05);
}

.contato-btn img {
    width: 320px;
    height: auto;
    display: block;
}

/* RESPONSIVIDADE */
@media screen and (max-width: 1024px) {
    /* HERO */
    .hero {
        padding: 0 40px;
    }

    .hero-content {
        gap: 40px;
    }

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

    .titulo-linha2 {
        font-size: 3.5rem;
    }

    .titulo-linha3 {
        font-size: 5rem;
    }

    .descricao-linha1 {
        font-size: 2rem;
    }

    .descricao-linha2 {
        font-size: 3rem;
    }

    .hero-alunos {
        height: 65%;
    }

    /* FORMS */
    .forms {
        padding: 60px;
    }

    .forms-content {
        gap: 50px;
    }

    .forms-aluno {
        width: 300px;
    }

    /* INFO */
    .info {
        padding: 60px 60px 0px 60px;
    }

    .info-content {
        gap: 50px;
    }

    .info-logo {
        width: 280px;
    }

    .info-alunos {
        max-width: 500px;
    }

    /* LOCALIZAÇÃO */
    .localizacao {
        padding: 60px 40px;
    }

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

    .localizacao-img {
        width: 280px;
        height: 200px;
    }

    /* CONTATO */
    .contato {
        padding: 60px;
    }

    .contato-logo {
        width: 320px;
    }

    .contato-titulo {
        font-size: 3rem;
    }
}

@media screen and (max-width: 768px) {
    /* HERO */
    .hero {
        padding: 40px 0px;
        justify-content: center;
    }

    .hero-content {
        flex-direction: column;
        gap: 30px;
        max-width: 100%;
        align-items: center;
    }

    .hero-coluna-esquerda {
        align-items: flex-start;
        width: 100%;
    }

    .hero-img-esquerda {
        width: 100%;
        max-width: 500px;
        align-self: flex-start;
    }

    .hero-botoes-esquerda {
        padding-left: 0;
        justify-content: center;
        align-self: center;
        width: auto;
    }

    .hero-coluna-direita {
        padding-left: 20px;
        padding-right: 20px;
        margin-top: 0;
        align-items: center;
    }

    .hero-titulo-novo {
        text-align: center;
        font-size: 1.5rem;
    }

    .hero-logo-branca {
        display: none;
    }

    .hero-coluna1 {
        align-items: center;
    }

    .hero-titulo {
        align-items: center;
        text-align: center;
    }

    .hero-subtitulo {
        text-align: center;
    }

    .hero-descricao {
        align-items: center;
        text-align: center;
    }

    .titulo-linha1 {
        font-size: 2rem;
    }

    .titulo-linha2 {
        font-size: 3rem;
    }

    .titulo-linha3 {
        font-size: 4rem;
    }

    .hero-subtitulo {
        font-size: 1rem;
    }

    .descricao-linha1 {
        font-size: 1.5rem;
    }

    .descricao-linha2 {
        font-size: 2.5rem;
    }

    .hero-coluna2 {
        align-items: center;
    }

    .hero-logo {
        width: 220px;
    }

    .hero-texto {
        text-align: center;
    }

    .hero-botoes {
        align-items: center;
    }

    .hero-btn img {
        width: 240px;
    }

    /* Ocultar imagem dos alunos no hero */
    .hero-alunos {
        display: none;
    }

    /* FORMS */
    .forms {
        padding: 40px 30px;
    }

    .forms-content {
        flex-direction: column;
        gap: 40px;
    }

    .forms-aluno {
        width: 250px;
    }

    .forms-texto p {
        font-size: 1rem;
    }

    .forms-formulario {
        padding: 40px 35px;
    }

    .forms-titulo {
        font-size: 2rem;
    }

    /* INFO */
    .info {
        padding: 40px 30px;
    }

    .info-content {
        flex-direction: column;
        gap: 40px;
    }

    .info-logo {
        width: 240px;
    }

    .info-texto p {
        font-size: 1rem;
    }

    .info-segmento {
        font-size: 1.1rem;
    }

    .info-btn img {
        width: 260px;
    }

    /* Ocultar imagem dos alunos na seção info */
    .info-alunos {
        display: none;
    }

    .info-fundo {
        display: none;
    }

    /* LOCALIZAÇÃO */
    .localizacao {
        padding: 40px 30px;
    }

    .localizacao-titulo {
        font-size: 2rem;
    }

    .localizacao-imagens {
        padding: 30px;
        gap: 20px;
    }

    .localizacao-img {
        width: 100%;
        max-width: 320px;
        height: auto;
    }

    .localizacao-mapicon {
        width: 80px;
        bottom: -15px;
        right: -30px;
    }

    .localizacao-endereco {
        font-size: 1.2rem;
    }

    /* CONTATO */
    .contato {
        padding: 40px 30px;
        gap: 30px;
    }

    .contato-logo {
        width: 260px;
    }

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

    .contato-icon {
        width: 40px;
        height: 40px;
    }

    .contato-texto {
        font-size: 1.2rem;
    }

    .contato-btn img {
        width: 260px;
    }
}

@media screen and (max-width: 480px) {
    /* HERO */
    .hero {
        padding: 30px 0px;
    }

    .hero-coluna-esquerda {
        align-items: flex-start;
        width: 100%;
    }

    .hero-img-esquerda {
        width: 100%;
        max-width: 400px;
        align-self: flex-start;
    }

    .hero-botoes-esquerda {
        padding-left: 0;
        justify-content: center;
        flex-wrap: wrap;
        align-self: center;
        width: auto;
    }

    .hero-coluna-direita {
        padding-left: 15px;
        padding-right: 15px;
        margin-top: 0;
        align-items: center;
    }

    .hero-titulo-novo {
        text-align: center;
        font-size: 1.2rem;
    }

    .hero-logo-branca {
        display: none;
    }

    .titulo-linha1 {
        font-size: 1.5rem;
    }

    .titulo-linha2 {
        font-size: 2.3rem;
    }

    .titulo-linha3 {
        font-size: 3.2rem;
    }

    .hero-subtitulo {
        font-size: 0.9rem;
    }

    .descricao-linha1 {
        font-size: 1.2rem;
    }

    .descricao-linha2 {
        font-size: 2rem;
    }

    .hero-logo {
        width: 180px;
    }

    .hero-texto {
        font-size: 0.95rem;
    }

    .hero-btn img {
        width: 180px;
    }

    /* FORMS */
    .forms {
        padding: 30px 20px;
    }

    .forms-aluno {
        width: 200px;
    }

    .forms-texto p {
        font-size: 0.95rem;
    }

    .forms-formulario {
        padding: 30px 25px;
    }

    .forms-titulo {
        font-size: 1.6rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .forms-logo {
        width: 150px;
    }

    /* INFO */
    .info {
        padding: 30px 20px;
    }

    .info-logo {
        width: 200px;
    }

    .info-texto p {
        font-size: 0.95rem;
    }

    .info-segmento {
        font-size: 1rem;
    }

    .info-btn img {
        width: 220px;
    }

    .info-fundo {
        display: none;
    }

    /* LOCALIZAÇÃO */
    .localizacao {
        padding: 30px 20px;
    }

    .localizacao-titulo {
        font-size: 1.6rem;
    }

    .localizacao-imagens {
        padding: 20px;
        gap: 15px;
    }

    .localizacao-img {
        max-width: 100%;
    }

    .localizacao-mapicon {
        width: 60px;
        bottom: -10px;
        right: -20px;
    }

    .localizacao-endereco {
        font-size: 1rem;
    }

    /* CONTATO */
    .contato {
        padding: 30px 20px;
        gap: 25px;
    }

    .contato-logo {
        width: 200px;
    }

    .contato-titulo {
        font-size: 1.8rem;
    }

    .contato-info {
        gap: 20px;
    }

    .contato-item {
        gap: 15px;
        flex-direction: column;
        text-align: center;
    }

    .contato-icon {
        width: 35px;
        height: 35px;
    }

    .contato-texto {
        font-size: 1rem;
    }

    .contato-btn img {
        width: 200px;
    }
}

