
/* 
    Sobre
*/
section.sobre {
    padding: 120px 0;
    padding-top: 200px;
    background: #fff;
    color: #000;
    text-align: center;
    position: relative;
}

section.sobre::before {
    content:'';
    width: 15px;
    height: 155px;
    display: block;
    background: url(../img/before-intro.jpg) center bottom no-repeat;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

section.sobre h2 {
    font-size: 50px;
    font-weight: 900;
    margin-bottom: 30px;
    color: var(--azul);
}

section.sobre p {
    color: var(--cinza-2);
    font-size: 18px;
    margin: auto;
    max-width: 70%;
    line-height: 1.6;
}


/* 
    Cursos
*/
section.cursos {
    background: var(--azul);
    padding: 120px 0;
}

section.cursos h2 {
    font-size: 50px;
    color: #fff;
    font-weight: bold;
}

section.cursos h2:after {
    content: '';
    width: 1px;
    height: 60px;
    background: #000;
    display: block;
    margin: 30px 0;
    margin-left: 50px;
}

section.cursos .cursos__nav {
    display: flex;
    flex-direction: column;
}

section.cursos .cursos__nav a {
    padding: 15px 0;
    color: #fff;
    display: block;
    font-size: 18px;
    transition: all .4s;
} 

section.cursos .cursos__nav a:hover,
section.cursos .cursos__nav a.active {
    background: var(--amarelo);
    color: var(--azul);
    padding: 15px;
}

section.cursos .cursos__boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

section.cursos .cursos__box img {
    display: block;
    width: 100%;
    aspect-ratio: 16/11;
    object-fit: cover;
}

section.cursos .cursos__box p {
    color: #fff;
    margin-top: 15px;
    font-size: 16px;
}


section.cursos .cta__primary {
    margin: auto;
    margin-top: 80px;
}


/* 
    Entenda
*/
section.entenda {
    padding: 120px 0;
}

section.entenda h2 {
    font-size: 46px;
    color: var(--azul);
    padding-right: 40px;
    position: sticky;
    top: 130px;
    left: 0;
}

section.entenda .entenda__box {
    display: flex;
    gap: 30px;
    align-items: center;
    position: relative;
}

section.entenda .entenda__box a {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1;
}

section.entenda .entenda__box img {
    max-width: 350px;
    aspect-ratio: 16/13;
    object-fit: cover;
    display: block;
    min-width: 350px;
}

section.entenda .entenda__box h3 {
    color: var(--azul);
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

section.entenda .entenda__box h3:before {
    content: '';
    width: 40px;
    height: 2px;
    background: #000;
    display: block;
    transition: all .4s;
}

section.entenda .entenda__box:hover h3:before {
    width: 60px;
    background: var(--amarelo);
}

section.entenda .entenda__box p {
    font-size: 18px;
    color: var(--cinza-2);
    padding-left: 55px;
}


/* 
    Provérbio
*/
section.proverbio {
    background: var(--azul);
    color:#fff;
}

section.proverbio .row {
    align-items: center;
}

section.proverbio h2 {
    font-size: 48px;
    font-weight: bold;
    padding-right: 30px;
}

section.proverbio .box {
    background: var(--azul-escuro);
    padding: 30px 120px;
    position: relative;
    height: 100%;
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: 50px;
    position: relative;
}

section.proverbio .box a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1;
}

section.proverbio h3 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

section.proverbio h3::before {
    content: '"';
    display: block;
    margin-bottom: 10px;
    font-size: 90px;
    line-height: 30px;
    font-style: italic;
    color: #adcbff;
}

section.proverbio h4 {
    font-size: 24px;
}

section.proverbio .proverbio__splide {
    position: relative;
}

.proverbio__splide .splide__pagination {
  position: absolute;
  top: 50%;
  left: calc(100% - 30px);
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px; 
  padding: 0;
  width: 30px;
  height: 100%;
}

.proverbio__splide .splide__pagination__page {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  transition: all 0.3s;
}

.proverbio__splide .splide__pagination__page.is-active {
  background: #333; /* cor do dot ativo */
  transform: scale(1.2);
}


/*
    Vídeos 
*/
section.videos {
    padding: 150px 0;
}

section.videos .row {
    align-items: center;
}

section.videos h2 {
    font-size: 50px;
    font-weight: bold;
    color: var(--azul);
    margin-bottom: 15px;
}

section.videos h4 {
    font-size: 24px;
    margin-bottom: 30px;
}

section.videos .videos__list {
    padding-right: 65px;
}

section.videos .videos__box {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    overflow: hidden;
}

section.videos iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: 0;
}

.videos__splide .splide__pagination {
  position: absolute;
  top: 50%;
  left: calc(100% + 20px);
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px; 
  padding: 0;
  width: 30px;
}

.videos__splide .splide__pagination__page {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  transition: all 0.3s;
}

.videos__splide .splide__pagination__page.is-active {
  background: #333; /* cor do dot ativo */
  transform: scale(1.2);
}


/* 
    Blog 
*/
section.blog {
    padding: 120px 0;
    background: #dcdcdc;
}

section.blog h2 {
    font-size: 50px;
    font-weight: bold;
    color: #000;
    margin-bottom: 15px;
}

section.blog h4 {
    font-size: 24px;
    margin-bottom: 30px;
}

section.blog .blog__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

section.blog .blog__item img {
    display: block;
    width: 100%;
    aspect-ratio: 16/11;
    object-fit: cover;

}

section.blog .blog__item .blog__item-content {
    background: var(--azul);
    min-height: 225px;
    padding: 40px;
    color: #fff;
}

section.blog .blog__item h5 {
    font-weight: bold;
    font-size: 22px;
    margin-bottom: 15px;
    line-height: 1.3;
}

section.blog .blog__item p {
    font-size: 16px;
    line-height: 1.5;
}