/* SESSÃO Capa */
#Capa {
    background-color: var(--hover-2);
    margin-top: 90px;
}

#Capa .container-lg {
    position: relative;
    height: 300px;
    padding: 0;
}

#Capa .squareWhite,
#Capa h2 {
    position: absolute;
    transform: translateY(-50%);
}

#Capa .squareWhite {
    height: 150px;
    width: 100px;
    background-color: var(--cinza-400);
    left: 10vw;
    top: 50%;
}

#Capa h2 {
    top: calc(50% + 25px);
    font-size: 50px;
    font-weight: 600;
    line-height: 43px;
    letter-spacing: -2.365384578704834px;
    color: var(--cinza-600);
    left: calc(10vw + 71px);
}

/* SESSÃO FAQ*/
#FAQ {
    margin: 40px 0;
}

#FAQ h3 {
    font-size: 40px;
    font-weight: 600;
    line-height: 75px;
    color: var(--hover-2);
    position: relative;
    margin: 75px 0 0 65px;
}

#FAQ h3::before {
    content: ".";
    position: absolute;
    font-size: 67px;
    line-height: 0;
    top: 50%;
    left: -20px;
    transform: translateY(-75%);
    height: 24px;
    width: 16px;
    z-index: 1;
}

/* Collapsibles */
.collapsible {
    background-color: #fff;
    border-radius: 12px;
    color: var(--cinza-600);
    padding: 0px 40px 40px 40px;
    height: auto;
    position: relative;
    /* overflow-y: hidden; */
    box-sizing: border-box;
    transition: padding-bottom 0.4s ease-in-out;
    margin: 30px 0;
    cursor: pointer;
}

.collapsible * {
    cursor: pointer;
}

.collapsible.collapsed {
    padding-bottom: 0;
    transition: padding-bottom 0.4s ease-in-out;
}

.collapsible.collapsed .content {
    opacity: 0;
    transform: scaleY(0);
    max-height: 0;
    transform-origin: top;
    transition: transform 0.4s ease, opacity 0.3s, max-height 0.4s;
}

.collapsible .content {
    transform-origin: top;
    max-height: 900px;
    opacity: 1;
    transform: scaleY(1);
    transition: transform 0.4s ease, opacity 1s, max-height 0.4s;
}

.collapsible p {
    font-size: 24px;
    line-height: 40px;
}

.collapsible h4 {
    font-family: Poppins;
    font-size: 24px;
    font-weight: 600;
    line-height: 28px;
    left: 40px;
    padding: 20px 50px 20px 0;
    margin: 0;
}

/* .collapsible h4, */
.collapsible button {
    position: absolute;
    top: 0;
    /* transform: translateY(-50%); */
}

.collapsible button {
    border: none;
    background-color: transparent;
    font-weight: 500;
    font-size: 30px;
    height: 100%;
    width: 40px;
    color: var(--hover-2);
    right: 40px;
    transform: rotate(0deg);
    transition: color 0.25s, transform 0.4s;
}

.collapsible:hover button {
    color: var(--hover);
}

.collapsible:active button {
    color: var(--hover-2);
}

.collapsible.collapsed button {
    transform: rotate(270deg);
}

/* END Collapsibles */


/* SESSÃO CTA */
#CTA {
    display: flex;
    justify-content: center;
}

#CTA a {
    font-size: 31px;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 38px;
    text-decoration: none;
    text-align: center;
    padding: 13px 0;
    border: 4px solid transparent;
    display: block;
    color: #fff;
    background-color: var(--hover-2);
    width: 576px;
    max-width: calc(100vw - 40px);
    margin: 63px 0 170px 0;
    transition: all 0.6s;
    border-radius: 12px;
    /* box-shadow: 3px 3px var(--hover); */
}

#CTA a:hover {
    transition: all 0.3s;
    background-color: var(--hover);
    color: var(--cinza-600);
    /* box-shadow: 3px 3px var(--gray-700) inset; */
}

#CTA a:active {
    transition: none;
    border: 4px solid var(--hover-2);
    background-color: var(--hover);
    color: var(--hover-2);
}