* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    position: relative;
    overflow-x: hidden;
    width: 100vw;
}

.container {
    height: 100%;
    width: 100%;
    max-width: 1320px;
    display: flex;
}



.header-blue-stripe {
    height: 50px;
    width: 100%;
    padding: 0 40px;
    background-color: #224867;
    display: none;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    z-index: 3;
}

.header-blue-stripe nav {
    display: flex;
    gap: 10px;
    padding: 15px 0;
}

.header-blue-stripe p {
    color: #FFF;
}

.header-blue-stripe p span {
    margin-left: 10px;
}

.header-blue-stripe a {
    text-decoration: none;
    border-bottom: 2px solid transparent;
    font-size: 20px;
    color: #fff;
}

.header-blue-stripe a:first-child:hover {
    border-bottom: 2px solid #FFF;
}

header {
    position: absolute;
    /* top: 0; */
    height: 80px;
    width: 100%;
    padding: 16px 40px;
    /* position: relative; */
    display: flex;
    justify-content: center;
    /* justify-content: space-between; */
    align-items: center;
    background-color: #1312127a;
    /* color: #1C649F; */
    font-weight: bold;
    font-size: 20px;
    box-shadow: 5px -1px 19px -1px #494a4f;
    top: 0;
    width: 100%;
    z-index: 1000; /* Garante que o header ficará acima do conteúdo */
    transition: background-color 0.3s ease; /* Para uma transição suave */
}

.fixed-header {
    position: fixed;
    background-color: white; /* Cor opcional ao fixar */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Adiciona uma sombra */
    top: 50px;
    color: #636363;
}

.fixed-header a,
.fixed-header a:visited {
    color: #636363;
}

header {
    /* position: fixed; */
    /* top: 50px; */
    /* z-index: 3; */
    /* display: flex; */
}

header .container {
    justify-content: space-between;
    align-items: center;
}

header nav {
    display: flex;
    gap: 20px;
}

header a {
    text-decoration: none;
    border-bottom: 2px solid transparent;
    color: #fff;
}

header a:hover {
    border-bottom: 2px solid #EB6A00;
}

header a:visited {
    color: #fff;
}

.header-logo {
    height: 100%;
}

header .mobile-menu-btn {
    display: none;
}

header .mob-menu {
    background-color: #a4bec7cc;
    height: 100vh;
    padding: 30px 40px;
    width: 100%;
    position: absolute;
    top: 80px;
    right: -100vw;
    transition: all 0.3s ease;
}

header .mob-menu.show {
    right: 0;
}

header .mob-menu.fixed-mob{
    background-color: white;
}

header .mob-menu nav {
    display: flex;
    flex-direction: column;
    /* width: fit-content; */
}

header .mob-menu nav a {
    color: #1C649F;
    font-size: 24px;
}

header .mob-menu nav a:visited {
    color: #1C649F;
}



.first-section {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    background-image: url(./src/img/Florsteste.jpg);
    /* background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(./src/img/Florsteste.jpg); */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.first-section__left {
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.first-section__right {
    flex: 1;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-right__blue-square {
    height: 370px;
    width: 500px;
    background-color: #9cc0d0;
    /* background-color: #5e95d1; */
    border-radius: 10px;
    position: relative;
    margin-top: 80px;
}

.section-right__blue-square img{
    width: 105%;
    height: auto;
    border-radius: 10px;
    position: absolute;
    top: 53px;
    left: -95px;
}

.section-left__text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #1C649F;
    height: 50%;
    width: 80%;
    text-align: center;
    margin-top: 50px;
}

.section-left__text-container h1 {
    font-size: 50px;
}

.section-left__text-container span {
    color: #EB6A00;
}

.orange-button {
    padding: 12px;
    background-color: #EB6A00;
    color: #fff;
    font-size: 16px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.orange-button:disabled {
    background-color: #a4a3a2;
}

.first-section__button:hover {
    background-color: #fff;
    color: #EB6A00;
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.3);
}



.second-section {
    background-color: #9cc0d0;
    width: 100vw;
    padding: 50px 40px;
    display: flex;
    justify-content: center;
    /* display: flex;
    flex-direction: column;
    align-items: center; */
    /* height: 650px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(./src/img/Flors.jpg);
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat; */
}

.second-section .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 50px;
}

.second-section__column {
    min-width: 250px;
    max-width: 350px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.second-section__column .title-container {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 16px;
    height: 100px;
    /* background-color: red; */
}

.second-section__column .title-container h3 {
    font-size: 18px;
    color: #224867;
    text-transform: uppercase;
}

.second-section__column img {
    width: 100px;
}

.second-section p {
    font-size: 18px;
    color: #224867;
    flex: 1;
    text-align: justify;
}

.second-section .paragraph-container {
    width: 100%;
    display: flex;
    gap: 30px;
}



.third-section {
    background-color: #224867;
    width: 100vw;
    padding: 50px 0;
    min-height: 400px;
    position: relative;
    padding: 50px 0;
}

.third-section__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    top: -250px;
    /* position: absolute; */
}

.third-section__content h2 {
    color: #FFF;
    font-size: 45px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.third-section__cards-container {
    width: 100vw;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 0 40px;
}

.third-section__card {
    display: flex;
    padding: 20px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 250px;
    min-height: 360px;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 5px -1px 19px -1px #5c5e65;
    transition: all 0.3s ease;
    cursor: pointer;
    color: rgb(73, 72, 72);
    font-size: 16px;
    justify-content: space-between;
}

.third-section__card:hover {
    transform: translateY(-10px);
}

.third-section__card-image {
    width: 130px;
    min-height: 130px;
    border-radius: 50%;
    background-color: #1C649F;
    background-size: cover;
    background-position: center;
    -webkit-box-shadow: 5px -1px 19px -1px rgba(126, 127, 133, 1);
    -moz-box-shadow: 5px -1px 19px -1px rgba(126, 127, 133, 1);
    box-shadow: 5px -1px 19px -1px #7e7f85;
    margin-bottom: 16px;
    background-repeat: no-repeat;
}

.third-section__card-image--first {
    background-image: url(./src/img/infantil2.jpg);
}

.third-section__card-image--second {
    background-image: url(./src/img/primaria2.jpg);
    background-position-y: bottom;
}

.third-section__card-image--third {
    background-image: url(./src/img/eso2.jpg);
}

.third-section__card-image--fourth {
    background-image: url(./src/img/ciclos.jpg);
    background-position-y: top;
}

.third-section__card-text {
    /* display: grid; */
    flex: 1;
}

.third-section__card-text h3 {
    text-transform: uppercase;
    text-align: center;
    height: 40px;
    margin-bottom: 16px;
}

.third-section__card-text p {
    /* overflow: hidden;
    display: -webkit-box;
    line-clamp: 8;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis; */
    margin-bottom: 20px;
}

.third-section__card-text .text-button {
    padding: 0;
    margin-top: 20px;
    justify-self: flex-end;
    margin: auto 0 0 0;
    display: inline-block;
}

.third-section__card-text .text-button:hover {
    background-color: initial;
    border-radius: none;
    color: initial;
}



.fourth-section {
    background-color: #f3f8fd;
    width: 100vw;
    padding: 50px 40px 20px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fourth-section .container {
    flex-direction: column;
    align-items: center;
}

.fourth-section h2 {
    color: #1C649F;
    font-size: 45px;
    margin-bottom: 30px;
    text-transform: uppercase;
    text-align: center;
}

.fourth-section h3 {
    color: #1C649F;
    font-size: 30px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.fourth-section hr {
    background-color: #1C649F;
    margin-bottom: 20px;
}

.fourth-section p {
    color: rgb(73, 72, 72);
    font-size: 16px;
    line-height: 22px;
}

.fourth-section__element {
    display: flex;
    gap: 20px;
    width: 100%;
    max-height: 500px;
    margin-bottom: 50px;
    /* max-width: 1320px */
}

.element__text-container {
    flex: 1;
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
/*nao apagar o comentado abaixo*/
.element__text-container p {
    overflow: hidden;
    /* display: -webkit-box;
    line-clamp: 5;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis; */
}

.element__text-container h2 {
   font-size: 40px;
}

.text-button {
    align-self: flex-start;
    padding: 10px;
    border-bottom: 2px solid #EB6A00;
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: bold;
    margin: auto 0 0 0;
}

.text-button:hover {
    background-color: #EB6A00;
    border-radius: 5px;
    color: #FFF;
}

.element__img-container {
    width: 435px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.element__img-container > img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}



.fifth-section {
    /* height: 500px; */
    width: 100vw;
    display: flex;
    justify-content: center;
    padding: 50px 40px;
    /* background-color: #1C649F; */
}

.fifth-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: inherit;
    height: 100%;
    /* background-color: #1C649F; */
}

.fifth-section h2,
.second-section h2 {
    color: #636363;
    font-size: 45px;
    margin-bottom: 45px;
    text-transform: uppercase;
    text-align: center;
}

.fifth-section p {
    color: #636363;
    font-size: 18px;
    margin-bottom: 45px;
}

.fifth-section form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.form-line {
    width: 100%;
    display: flex;
    gap: 15px;
}

.form-line input,
textarea,
select {
    flex: 1;
    padding: 16px 20px;
    font-size: 14px;
    margin-bottom: 15px;
}

textarea {
    font-family:'Courier New', Courier, monospace
}

select {
    color: #757587;
}

.form-first-line #name {
    flex: 3;
}

.form-second-line #educacion {
    flex: .5;
}

.form-last-line {
    display: block;
}

.form-last-line a {
    color: #EB6A00;
    /* text-decoration: none; */
    font-weight: 700;
    cursor: pointer;
}



footer {
    background-color: #224867;
    width: 100vw;
    padding: 24px 40px 0 40px;
    font-size: 16px;
    font-weight: 100;
    color: #beb3b3;
    line-height: 24px;
    display: flex;
    justify-content: center;
}

footer .container {
    display: flex;
    flex-direction: column;
}

.footer-header {
    width: 100%;    
    border-bottom: 1px solid #575757;
    padding-bottom: 24px;
}

.footer-body {
    width: 100%;
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
}

.footer-column {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    min-width: 150px;
}

.footer-first-column {
    white-space: nowrap;
}

.footer-logo {
    width: 175px;
    height: 48px;
    /* margin-bottom: 30px; */
}

.footer-font-strong {
    font-weight: bold;
    color: #9cc0d0;
    font-size: 20px;
    margin-bottom: 8px;
}



.footer-blue-stripe {
    padding: 12px 40px;
    background-color: #224867;
    display: flex;
    justify-content: center;
    color: #FFF;
    /* border-top: 1px solid #575757; */
}

.footer-blue-stripe .container {
    display: flex;
    justify-content: space-between;
}

.footer-blue-stripe a {
    color: #FFF;
    text-decoration: none;
    font-size: 16px;
}

.footer-blue-stripe a:visited {
    color: #FFF;
    text-decoration: none;
}

.footer-blue-stripe .copyright {
    color: #96989f;
}

@media (max-width: 1440px ) {

    .container {
        max-width: 1240px;
    }

}

@media (max-width: 1280px ) {

    .container {
        max-width: 980px;
    }

    /* .first-section__left {
        align-items: flex-start;
    } */

    .first-section__right {
        justify-content: flex-end;
    }

    .section-right__blue-square {
        height: 310px;
        width: 445px;
    }

}

@media (max-width: 1024px ) {

    /* .container {
        max-width: 727px;
    } */

}



@media (max-width: 1170px ) {

    /* .second-section {
        display: none;
    } */

    .third-section__content {
        position: initial;
    }

    .fourth-section .text-button {
        margin-top: 16px;
    }
    
    

}

@media (max-width: 1042px ) {

    /* .footer-column {
        text-align: center;
    } */
}

@media (max-width: 1030px ) {
/* 
    .first-section {
        background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(./src/img/Flors.jpg);
        background-position: bottom;
        background-size: cover;
        background-repeat: no-repeat;
    } */

    .first-section__left {
        align-items: center;
    }

    header {
        background-color: #4c44444d;
    }

    .first-section__right,
    header nav {
        display: none;
    }

    header .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

}

@media (max-width: 970px ) {

    .header-blue-stripe {
        padding:  0 80px;
    }

    header {
        padding: 16px 80px;
    }

    header .mob-menu {
        padding: 30px 80px;
    }

    .second-section {
        padding: 50px 80px;
    }

    .second-section .container {
        justify-content: center;
    }

    .third-section__cards-container {
        padding: 0 80px;
    }

    .fourth-section {
        padding: 50px 80px 20px 80px;
    }

    .element__img-container {
        width: 100%;
    }

    .element__text-container {
        padding-top: 24px;
    }

    .element__text-container p {
        text-align: justify;
    }

    .fourth-section__element {
        flex-direction: column-reverse;
        max-height: none;
    }

    .fourth-section__element:nth-of-type(2) {
        flex-direction: column;
    }

    footer {
        padding: 24px 80px 0 80px;
    }

    .footer-blue-stripe {
        padding: 16px 80px;
    }
}

@media (max-width: 768px ) {

    .header-blue-stripe {
        padding:  0 15px;
    }

    header {
        padding: 16px 40px;
    }

    header .mob-menu {
        padding: 30px 40px;
    }

    .second-section {
        padding: 50px 40px;
    }

    .third-section__cards-container {
        padding: 0 40px;
    }

    .fourth-section {
        padding: 50px 40px 20px 40px;
    }

    footer {
        padding: 24px 40px 0 40px;
    }

    .footer-blue-stripe {
        padding: 16px 40px;
    }

}

@media (max-width: 680px ) {

    .form-line {
        flex-direction: column;
    }

    .footer-blue-stripe .container {
        flex-direction: column;
        align-items: center;
        line-height: 24px;
        gap: 30px;
    }

    .footer-header {
        display: flex;
        justify-content: center;
    }

    .footer-blue-stripe .container div {
        text-align: center;
    }
}

@media (max-width: 445px ) {

    /* .header-blue-stripe,
    .header-blue-stripe nav {
        width: 100%;
    } */

    .header-blue-stripe nav a:first-child {
        margin: 0 auto 0 0;
    }

    header .mob-menu nav a {
        text-align: center;
    }

    .third-section__card {
        width: 100%;
    }

    .footer-header {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 400px ) {

    .third-section__cards-container {
        padding: 0 24px;
    }

    .second-section {
        padding: 50px 24px;
    }


    .fourth-section {
        padding: 50px 24px 20px 24px;
    }

    .section-left__text-container h1,
    .third-section__content h2,
    .fourth-section h2 {
        font-size: 45px;
    }
}

