#home {
    display: flex;
    min-height: calc(100vh - 96px);
    position: relative;
}

#cta {
    width: 35%;
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 5%;
}

#cta .title {
    font-size: 4rem;
    color: #1d1d1d;
}

#cta .title span {
    color: #e9a209;
}

#cta .description {
    font-size: 1.2rem;
}

#cta_buttons {
    display: flex;
    gap: 24px;
}

#cta_buttons a {
    text-decoration: none;
    color: #1d1d1d;
}

#phone_button {
    display: flex;
    gap: 8px;
    align-items: center;
    background-color: #ffffff;
    padding: 8px 14px;
    font-weight: 500;
    box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

#phone_button button {
    box-shadow: none;
}

#banner {
    display: flex;
    align-items: start;
    justify-content: end;
    width: 65%;
    z-index: 2;
}

.texto-animado {
    font-size: 2.2em;
    display: flex;
    gap: 10px;
    margin-top: 50%;
    margin-left: 250px;
}

.palavra-animada {
    position: relative;
    height: 1.2em;
    overflow: hidden;
}

.palavra-animada .lista {
    display: flex;
    flex-direction: column;
    animation: subirPalavras 9s infinite;
}

.lista span {
    height: 1.2em;
    transition: transform 0.5s ease-in-out;
    color: rgb(255, 166, 0);
}

#sobre {
    background-color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 8%;
}

.sobre-title {
    font-family: "Inter", sans-serif;
    font-feature-settings: 'liga' 1, 'calt' 1;
    font-weight: 800;
    font-size: 4rem;
}

.sobre-description {
font-family: "Inter", sans-serif;
font-feature-settings: 'liga' 1, 'calt' 1;
font-size: 1rem;
line-height: 1.6;
text-align: left;
max-width: 800px;
}

@keyframes subirPalavras {
    0%, 20%{transform: translateY(-0.1em)}
    25%, 45%{transform: translateY(-1.3em);}
    50%, 70%{transform: translateY(-2.55em);}
    75%, 95%{transform: translateY(-3.77em);}
    100% {transform: translateY(0);}
}


.start-div {
   margin-top: 17%;
   margin-left: 40%;
}

.shape {
    background-color: #ffe8b4;
    width: 50%;
    height: 60%;
    position: absolute;
    border-radius: 15% 0% 15% 0%;
    margin-right: 20px;
    top: 70px;
    right: 0;
    z-index: 1;
}

@media screen and (max-width: 1170px) {
    #home {
        min-height: 100%;
        padding-top: 0px;
    }

    #banner,
    #banner img,
    #home .shape {
        display: none;
    }

    #cta {
        width: 100%;
        text-align: center;
        align-items: center;
    }
}

@media screen and (max-width: 450px) {
    #phone_button button {
        display: none;
    }
}

.jefferson {
    height: 33rem;
    margin-top: -3rem;
    margin-left: 17rem;
    box-shadow: 0, -10px, 20px rgba(0, 0, 0, 0.5);
}

.jeff-about {
    height: 55rem;
    margin-left: 60%;
    margin-top: -38rem;
}

@media screen and (max-width: 768px) {
    .jeff-about {
        display: none;
    }
}

/* Esconde o banner de palavras quando a viewport for <= 1807x1292 */
@media screen and (max-width: 1807px) and (max-height: 1292px) {
  #banner { 
    display: none !important;
    visibility: hidden;
  }
}

@media screen and (max-width: 1467px) and (max-height: 1292px) {
  .jeff-about { 
    display: none !important;
    visibility: hidden;
  }
}