* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --accent: #D01600;
    --text-color: #000000;
    --gray-color: #747474;
    --primary-color: #B21000;
    --second-color: #222222;

    /*Fontes*/
    --logo-font: 'Cormorant Garamond', serif;
    --primary-font: 'Fira Sans', sans-serif;
    --second-font: 'Inter', sans-serif;

    /*Espaçamento*/
    --gap: 2rem
}

html {
    font-family: 'Cormorant Garamond', serif;
    font-family: 'Fira Sans', sans-serif;
    font-family: 'Inter', sans-serif;

    font-size: 62.5%;

    scroll-behavior: smooth;
}

body {
    font-size: 1.6rem;
}

a {
    text-decoration: none;
    color:#000000;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Fira Sans';
    font-style: normal;
    font-weight: 300;
    /* font-size: 3.125vw; */
    /* line-height: 3.5vw; */
    /* or 113% */

    letter-spacing: -0.05em;
}


.accent {
    font-weight: 400;
    display: inline;
}

button:hover {
    cursor: pointer;
}

/*Home*/


#desktop .home {
    display: grid;
    grid-template-columns: 55.2% 44.8%;
    background-color: white;
    margin: 0 auto;

    max-height: 74.5rem;

    height: 100Vh;
    width: 100%;

    max-height: 100vh;

    /* min-height: 745px; */
    width: 100%;
}

.main-content {
    padding-left: 6rem;

    max-height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: space-between;


}

#desktop .home .top-menu {
    /* position: relative; */
    height: 6.8rem;
    width: 22%;


    display: flex;
    flex: wrap;
    justify-content: space-between;
    gap: 16rem;

    padding-top: 2vh;
}

#desktop .home .top-menu .logo {
    flex: 0 1 auto;
    margin: 0 auto;
}

#desktop .home .top-menu .lista {
    position: relative;



    display: flex;
    justify-content: space-between;
    gap: 1rem;

    flex: 0 0 auto;
    align-items: center;
    margin: 0 auto;


    list-style-type: none;

}

#desktop .home .top-menu .lista .item {
    padding: 1rem;
    min-width: 1rem;

    display: flex;

    justify-content: center;
    align-items: center;
    margin: 0 auto;

}

#desktop .home .top-menu .lista .item a {
    text-decoration: none;
    font-family: var(--primary-font);
    font-weight: 400;
    border-radius: 1.5rem;

    transition: all 300ms ease-in-out;
}

#desktop .home .top-menu .lista .item a:hover {
    color: black;
    background-color: white;
    box-shadow: 0.2rem 0.2rem 0.2rem var(--accent);
    padding: 0.5rem 0.8rem;
    border-radius: 1.5rem;

    border: none;
}

#desktop .home .main-content .content .cta {
    position: absolute;
    /* top: 22.5rem; */

    width: 30.83765vw;
    height: 36.468885vh;

    display: flex;

    flex-direction: column;
    align-items: start;

    justify-content: center;

}

#desktop .home .main-content .cta h1 {
    width: auto;
    height: 100px;

    font-size: 3.33580vw;

    display: block;

}

#desktop .home .main-content .cta .texto {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 28px;

    padding-top: var(--gap);
}

#desktop .home .main-content .cta button {
    margin-top: var(--gap);
    border: 0.2rem solid var(--primary-color);

    padding: 1.2rem var(--gap) 1.2rem var(--gap);
    background-color: #D01600;
    border-radius: 4rem;
    box-shadow: 0.2rem 0.2rem 0.2rem 0.1rem rgba(0, 0, 0, 0.2);

    transition: all 300ms ease-in-out;
}

#desktop .home .main-content .cta button:active {
    background-color: white;
}

#desktop .home .main-content .cta a button:hover {
    background-color: white;
}

#desktop .home .main-content .cta button>p {
    font-family: 'Fira Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 2.1rem;
    line-height: 2.8rem;

    color: white;
}

#desktop .home .main-content .cta button>p:hover {
    color: #B21000;
}

#desktop .home .main-content .info {
    /* position: absolute; */

    /* top: 61.5rem;
    width: 85rem;
    height: 13rem;
    width: 66.5%; */

    bottom: 0;
    height: 11.8133vh;
    width: 63.0096vw;


    box-shadow: -2px -2px 4px 0px rgba(0, 0, 0, 0.25);
    border-radius: 40px 0px 0px 0px;

    display: flex;
    background-image: url("../img/section_1/info-fundo.png");
    z-index: 0;

    background-size: cover;
    background-repeat: none;
    background-position: center;
}

#desktop .home .main-content .info h1 {
    font-family: 'Fira Sans';
    font-style: normal;
    font-weight: 300;
    font-size: 1.63vw;
    /* line-height: 5.1rem; */

    letter-spacing: -0.05em;

    color: #000000;

    padding: 1rem 1rem 1rem 2rem;
}

#desktop .home .disclaimer {
    display: flex;
    justify-content: center;
    align-items: center;


    border-radius: 0 0 0 10rem;

    background-image: url("../img/section_1/disclaimer-fundo.png");
    width: auto;
    height: 100vh;
    z-index: 1;

    background-size: cover;
    background-repeat: no-repeat;
}

#desktop .home .disclaimer h1 {
    position: absolute;

    width: 38rem;
    height: 25.5rem;

    /* top: 22rem; */
    right: 5.5%;

    font-family: 'Fira Sans';
    font-style: normal;
    font-weight: 300;
    font-size: 45px;
    line-height: 51px;
    color: white;

    padding-left: 7rem;

    justify-content: center;
    align-self: center;
}

#desktop .home .disclaimer img {
    position: relative;
    width: 50%;
    height: auto;

    top: -2.75%;
    right: 50%;
}

/*Curso-1*/
#desktop .curso-1 {
    background-color: black;
    
    background-image: url("../img/section_2/fundo.png");
    background-size: cover;
    background-repeat: no-repeat;
    
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    min-height: 745px;
    width: 100%;
}

#desktop .curso-1 .texto {
    color: white;
    text-align: center;

    padding-top: 5rem;
    padding-bottom: 5.5rem;
}

#desktop .curso-1 .texto h1 {
    color: white;
    text-align: center;

    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 45px;
    line-height: 36px;

    letter-spacing: -0.05em;
    padding-bottom: 2rem;
}

#desktop .curso-1 .descritivo {
    max-width: 144rem;

    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(54.86%, 1fr) minmax(42.7rem, 30%);


}

#desktop .curso-1 .descritivo .box-1 {
    width: 54.86vw;
    max-width: 790px;
    height: 500px;
    background: linear-gradient(248.48deg, rgba(255, 255, 255, 0.4) 2.08%, rgba(208, 22, 0, 0) 47.18%, rgba(208, 22, 0, 0.4) 98%);

    border-radius: 4rem;
}

#desktop .curso-1 .descritivo .box-1 .inside-box {
    width: 52.6vw;
    max-width: 758.4px;
    height: 480px;
    background: white;

    position: relative;
    border-radius: 4rem;

    top: 1rem;
    left: 1.5rem;
    right: 1.5rem;

    display: flex;
    flex-direction: column;
    justify-content: space-around;

    padding: 1rem 0;

}

#desktop .curso-1 .descritivo .box-1 .inside-box h1 {
    position: relative;
    content: '';

    left: 5rem;
}

#desktop .curso-1 .descritivo .box-1 .inside-box ul,
.inside-box p {
    position: relative;
    left: 10rem;

    font-family: 'Fira Sans';
    font-style: normal;
    font-weight: 300;
    font-size: 26px;
    line-height: 44px;
    /* or 169% */

    letter-spacing: 0.01em;

    color: #000000;
}

#desktop .curso-1 .descritivo .box-1 .inside-box p {
    position: relative;
    left: 5rem;
}

#desktop .curso-1 .descritivo .box-2 {
    background: white;
    width: 42.7rem;
    height: 48rem;

    margin-right: 6rem;
    border-radius: 4rem;

    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-around;

    padding-top: 2.5rem;
    padding-bottom: 2.5rem;


}

#desktop .curso-1 .descritivo .box-2 .primeira-parte {
    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
}

#desktop .curso-1 .descritivo .box-2 ul {
    font-family: 'Fira Sans';
    font-style: normal;
    font-weight: 300;
    font-size: 21px;
    line-height: 25px;

    position: relative;
}

#desktop .curso-1 .descritivo .box-2 .primeira-parte .whatsapp button {
    background: #25D366;
    border: 1px solid #4CAF50;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.4);
    border-radius: 25px;
    min-width: 250px;
    height: 50px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    transition: all 300ms ease-in-out;

    position: relative;

}

#desktop .curso-1 .descritivo .box-2 .primeira-parte .whatsapp button:hover {
    background-color: white;
}

#desktop .curso-1 .descritivo .box-2 .primeira-parte .whatsapp a {
    text-decoration: none;
}

#desktop .curso-1 .descritivo .box-2 .primeira-parte .whatsapp button>p {
    font-size: 1.8rem;
    font-family: 'Fira Sans';
    font-style: normal;
    font-weight: 300;
    font-size: 21px;
    line-height: 25px;

    display: flex;
    align-items: center;
    letter-spacing: -0.02em;
    color: white;

    position: relative;
    left: 2.4rem;
    text-decoration: none;
}

#desktop .curso-1 .descritivo .box-2 .primeira-parte .whatsapp button>p:hover {
    color: #25D366;
}

#desktop .curso-1 .descritivo .box-2 .primeira-parte .whatsapp button p.accent {
    font-weight: 500;
    padding-right: 1rem;
}

#desktop .curso-1 .descritivo .box-2 .primeira-parte .whatsapp button>img {
    width: auto;
    height: auto;
    padding: 0 1rem;
}

#desktop .curso-1 .descritivo .box-2 hr {
    font-weight: 200;
    width: 80%;
    color: black;

    position: relative;
    margin: 2rem;
}

#desktop .curso-1 .descritivo .box-2 .segunda-parte {
    display: flex;
    flex-direction: column;

    justify-content: space-between;
    gap: 2rem;
    align-items: center;

}

#desktop .curso-1 .descritivo .box-2 .segunda-parte h2 {
    font-family: 'Fira Sans';
    font-style: normal;
    font-weight: 300;
    font-size: 21px;
    line-height: 25px;
    /* or 119% */

    display: flex;
    align-items: center;
    letter-spacing: -0.02em;

    /* width: 26.8rem; */
    width: auto;
    max-width: 26.8rem;
    height: 6rem;
}

#desktop .curso-1 .descritivo .box-2 .segunda-parte button {
    width: 250px;
    height: 50px;

    background: #D01600;
    border: 1px solid rgba(178, 16, 0, 0.3);
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.4);
    border-radius: 25px;

    display: flex;
    justify-content: center;
    align-items: center;

    transition: all 300ms ease-in-out;

}

#desktop .curso-1 .descritivo .box-2 .segunda-parte button:hover {
    /* box-shadow: black 270px 0 0 1px inset; */
    background-color: white;
}

#desktop .curso-1 .descritivo .box-2 .segunda-parte button>p {
    width: auto;
    height: 25px;

    font-family: 'Fira Sans';
    font-style: normal;
    font-weight: 300;
    font-size: 21px;
    line-height: 25px;
    /* identical to box height, or 119% */

    letter-spacing: -0.02em;

    color: #FFFFFF;

    margin: 0 auto;

    transition: all 300ms ease-in-out;
}

#desktop .curso-1 .descritivo .box-2 .segunda-parte button>p:hover {
    color: #D01600;
}

/*Curso-2*/
#desktop .curso-2 {
    background-color: black;

    background-image: url("../img/section_3/fundo.png");
    background-size: cover;
    background-repeat: no-repeat;

    display: flex;
    flex-direction: column;
    justify-content: space-around;
    min-height: 745px;
    width: 100%;
}

#desktop .curso-2 .texto {
    color: black;
    text-align: center;

    padding-top: 5rem;
    padding-bottom: 5.5rem;
}

#desktop .curso-2 .texto h1 {
    color: black;
    text-align: center;

    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 45px;
    line-height: 36px;

    letter-spacing: -0.05em;
    padding-bottom: 2rem;
}

#desktop .curso-2 .descritivo {
    max-width: 144rem;

    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(54.86%, 1fr) minmax(42.7rem, 30%);


}

#desktop .curso-2 .descritivo .box-1 {
    width: 79rem;
    height: 50rem;
    background: linear-gradient(248.48deg, rgba(255, 255, 255, 0.4) 2.08%, rgba(208, 22, 0, 0) 47.18%, rgba(208, 22, 0, 0.4) 98%);

    border-radius: 4rem;
}

#desktop .curso-2 .descritivo .box-1 .inside-box {
    width: 75.84rem;
    height: 48rem;
    background: black;

    position: relative;
    border-radius: 4rem;

    top: 1rem;
    left: 1.5rem;
    right: 1.5rem;

    display: flex;
    flex-direction: column;
    justify-content: space-around;

    padding: 1rem 0;

}

#desktop .curso-2 .descritivo .box-1 .inside-box h1 {
    position: relative;
    content: '';

    left: 5rem;
    color: white;
}

#desktop .curso-2 .descritivo .box-1 .inside-box ul,
.inside-box p {
    position: relative;
    left: 10rem;

    font-family: 'Fira Sans';
    font-style: normal;
    font-weight: 300;
    font-size: 26px;
    line-height: 44px;
    /* or 169% */

    letter-spacing: 0.01em;

    color: white;
}

#desktop .curso-2 .descritivo .box-1 .inside-box p {
    position: relative;
    left: 5rem;
}

#desktop .curso-2 .descritivo .box-2 {
    background: black;
    width: 42.7rem;
    height: 48rem;

    margin-right: 6rem;
    border-radius: 4rem;

    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-around;

    padding-top: 2.5rem;
    padding-bottom: 2.5rem;


}

#desktop .curso-2 .descritivo .box-2 .primeira-parte {
    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;

    color: white;
}

#desktop .curso-2 .descritivo .box-2 ul {
    font-family: 'Fira Sans';
    font-style: normal;
    font-weight: 300;
    font-size: 21px;
    line-height: 25px;

    position: relative;
}

#desktop .curso-2 .descritivo .box-2 .primeira-parte .whatsapp button {
    background: #25D366;
    border: 1px solid #4CAF50;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.4);
    border-radius: 25px;
    min-width: 250px;
    height: 50px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    transition: all 300ms ease-in-out;

    position: relative;

}

#desktop .curso-2 .descritivo .box-2 .primeira-parte .whatsapp button:hover {
    background-color: black;
}

#desktop .curso-2 .descritivo .box-2 .primeira-parte .whatsapp a {
    text-decoration: none;
}

#desktop .curso-2 .descritivo .box-2 .primeira-parte .whatsapp button>p {
    font-size: 1.8rem;
    font-family: 'Fira Sans';
    font-style: normal;
    font-weight: 300;
    font-size: 21px;
    line-height: 25px;

    display: flex;
    align-items: center;
    letter-spacing: -0.02em;
    color: white;

    position: relative;
    left: 2.4rem;
    text-decoration: none;
}

#desktop .curso-2 .descritivo .box-2 .primeira-parte .whatsapp button>p:hover {
    color: #25D366;
}

#desktop .curso-2 .descritivo .box-2 .primeira-parte .whatsapp button p.accent {
    font-weight: 500;
    padding-right: 1rem;
}

#desktop .curso-2 .descritivo .box-2 .primeira-parte .whatsapp button>img {
    width: auto;
    height: auto;
    padding: 0 1rem;
}

#desktop .curso-2 .descritivo .box-2 hr {
    font-weight: 200;
    width: 80%;
    color: white;

    position: relative;
    margin: 2rem;
}

#desktop .curso-2 .descritivo .box-2 .segunda-parte {
    display: flex;
    flex-direction: column;

    justify-content: space-between;
    gap: 2rem;
    align-items: center;

}

#desktop .curso-2 .descritivo .box-2 .segunda-parte h2 {
    font-family: 'Fira Sans';
    font-style: normal;
    font-weight: 300;
    font-size: 21px;
    line-height: 25px;
    /* or 119% */

    display: flex;
    align-items: center;
    letter-spacing: -0.02em;

    /* width: 26.8rem; */
    width: auto;
    max-width: 26.8rem;
    height: 6rem;

    color: white;
}

#desktop .curso-2 .descritivo .box-2 .segunda-parte button {
    width: 250px;
    height: 50px;

    background: #D01600;
    border: 1px solid rgba(178, 16, 0, 0.3);
    box-shadow: 0px 2px 5px rgba(255, 255, 255, 0.4);
    border-radius: 25px;

    display: flex;
    justify-content: center;
    align-items: center;

    transition: all 300ms ease-in-out;

}

#desktop .curso-2 .descritivo .box-2 .segunda-parte button:hover {
    /* box-shadow: black 270px 0 0 1px inset; */
    background-color: black;
}

#desktop .curso-2 .descritivo .box-2 .segunda-parte button>p {
    width: auto;
    height: 25px;

    font-family: 'Fira Sans';
    font-style: normal;
    font-weight: 300;
    font-size: 21px;
    line-height: 25px;
    /* identical to box height, or 119% */

    letter-spacing: -0.02em;

    color: white;

    margin: 0 auto;

    transition: all 300ms ease-in-out;
}

#desktop .curso-2 .descritivo .box-2 .segunda-parte button>p:hover {
    color: #D01600;
}

/*Valores*/

#desktop .valores {
    background-color: black;

    display: flex;
    justify-content: center;
    flex-direction: column;

    display: flex;
    flex-direction: column;
    justify-content: space-around;
    min-height: 745px;
    width: 100%;

}

#desktop .valores .texto {
    color: white;

    padding-top: 5rem;
    padding-bottom: 5.5rem;
    text-align: center;

}

#desktop .valores h1 {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 45px;
    line-height: 36px;

    padding-bottom: 2rem;

}

#desktop .valores p {
    font-family: 'Fira Sans';
    font-style: normal;
    font-weight: 275;
    font-size: 18px;
    line-height: 28px;
    /* identical to box height, or 156% */

    letter-spacing: 0.06em;
}

#desktop .valores .container {
    background-color: white;
    width: 95.8%;
    height: 52rem;

    border-radius: 2rem;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 0rem 2.5rem;
    row-gap: 9rem;
}

#desktop .valores .container .top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    /* align-items: center; */
    gap: 2rem;

    height: 100px;
    padding: 0rem 3rem;
}

#desktop .valores .container .top .item {
    width: 20.83vw;
    height: 10rem;
    color: white;

    background-color: black;
    border-radius: 1rem;

    display: flex;
    align-items: center;
    justify-content: center;

}

#desktop .valores .container .top .item p {
    text-align: center;
    font-family: 'Fira Sans';
    font-style: normal;
    font-weight: 300;
    font-size: 21px;
    line-height: 25px;
}

#desktop .valores .container .bottom {
    height: 28rem;
    width: 100%;
    max-width: 132rem;
    background-color: white;

    display: grid;
    grid-template-columns: minmax(50%, auto) minmax(25%, auto) minmax(25%, auto);
    
    justify-content: center;
    align-items: center;

    gap: 2rem;
    padding: 0rem 3rem 0rem 3rem;

}

#desktop .valores .container .bottom .main-oferta {
    background-color: white;
    height: 100%;
    width: auto;

    border: 0.1rem solid #D01600;
    border-color: black;

    border-radius: 2rem;

    display: flex;
    justify-content: center;
    align-items: center;

}

#desktop .valores .container .bottom .ofertas {
    display: grid;
    grid-template-columns: auto auto;

    gap: 2rem;
    height: 100%;
}

#desktop .valores .container .bottom .oferta-1 {
    background-image: url("../img/section_4/mask_group.png");

    background-repeat: no-repeat;

    width: 30rem;
    height: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    
}

#desktop .valores .container .bottom .oferta-2 {
    background-image: url("../img/section_4/mask_group.png");

    background-repeat: no-repeat;
    width: 30rem;    
    height: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

#desktop .valores .container .bottom .ofertas .preco {
    width: 23rem;
    height: 18rem;
    background-color: white;

    margin: 0rem 3.5rem 0rem 3.5rem;
    align-self: center;
    border-radius: 2rem;

    display: flex;
    justify-content: center;
    align-items: center;

    margin: 0 auto;
}
