@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;700&display=swap');
body { 
    font-family: 'Space Grotesk', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #FAF6EB;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* Animação para os elementos aparecerem de baixo para cima */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

*{
    animation: fadeInUp 2s ease-out forwards;
    animation-delay: 1s;
}

/* Exclui os elementos relacionados ao cta-button2 */
.cta-button2 {
    animation: none !important;
}


/* Estilo do cabeçalho */
.header {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 50px 0 0;
}
.header a {
    color: #1E1E1E;
    text-decoration: none;
    margin-left: 25px;
    margin-right: 25px;
    font-size: 16px;
    
}
.header a:hover {
    text-decoration: underline;
}
#logo {
    width: 500px;
    height: auto;
    -webkit-user-drag: none;
}

/* Container principal */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

#img-um {
    width: 70%;
    border-radius: 20px;
    object-fit: contain;
    -webkit-user-drag: none;
}

/* Seção da imagem e texto */
#image-section {
    display: flex;
    flex-direction: row; /* Define que imagem e texto fiquem lado a lado */
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 90%; /* Limita a largura total */
    gap: 80px; /* Espaçamento entre imagem e texto */
    margin-bottom: 100px;
    margin-top: 100px;
}

#image-section img {
    width: 50%; /* Define que a imagem ocupe 40% da largura */
    object-fit: cover;
    -webkit-user-drag: none;
}


.text-section {
    flex: 1; /* Faz o texto ocupar o restante do espaço disponível */
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: justify;
}

.text-section p {
    margin-bottom: 30px;
    color: #1E1E1E;
    line-height: 1.6;
    font-size: 23px;
}

/* Botão de chamada para ação */
.cta-button {
    background-color: #1E1E1E;
    color: #D1D3D5;
    border: none;
    border-radius: 10px;
    padding: 20px 40px;
    font-size: 25px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
    align-self: flex-start;
    transition: background-color 0.3s ease;
    width: 70%;
}

.cta-button:hover {
    background-color: #474747;
}

/* Carrocel
.tituloum {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 80px 0 0;
}

#tituloum {
    width: 50%;
    height: auto;
    -webkit-user-drag: none;
}

.carousel-container {
    overflow: hidden;
    width: 100%;
    max-width: 90%;
    margin: 20px auto;
    margin-top: 20px;
    position: relative;
}

.carousel {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
}

.carousel div {
    width: 100%;
    height: 300px;
    margin: 10px;
    padding: 40px;
    background-color: #D1D3D5;
    border-radius: 40px;
    text-align: center;
    scroll-snap-align: center;
}

.carousel::-webkit-scrollbar {
    display: none; /* Para Chrome, Safari e Opera
}
.carousel div p {
    color: #1E1E1E;
    text-align: justify;
    font-size: 15px;
} 

.cta {
    margin-top: 30px;
    font-size: 35px;
    color: #1E1E1E;
    max-width: 60%;
    text-align: center;
    margin-bottom: 150px;
    margin-top: 50px;
}
*/



.areaform {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    background-color: #1E1E1E;
    flex-wrap: wrap;
    align-content: space-around;
    flex-direction: column;
    align-items: center;
}

#imgform {
    margin-top: 60px;
    padding: 60px 0 40px;
    width: 70%;
    border-radius: 20px;
    object-fit: contain;
    -webkit-user-drag: none;
}

.cta2 {
    padding: 25px;
    font-size: 35px;
    color: #FAF6EB;
    max-width: 60%;
    text-align: center;
    margin-bottom: 60px;
    margin-top: 40px;
}

.cta-button2 {
    position: relative;
    padding: 12px 35px;
    background: #FAF6EB;
    font-size: 17px;
    font-weight: 500;
    color: #1E1E1E;
    border: 3px solid #FAF6EB;
    border-radius: 10px;
    box-shadow: 0 0 0 #FFD277;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    margin-bottom: 80px;
}

.star-1 {
    position: absolute;
    top: 20%;
    left: 20%;
    width: 25px;
    height: auto;
    filter: drop-shadow(0 0 0 #FAF6EB);
    z-index: -5;
    transition: all 1s cubic-bezier(0.05, 0.83, 0.43, 0.96);
    opacity: 0;
  }
  
  .star-2 {
    opacity: 0;
    position: absolute;
    top: 45%;
    left: 45%;
    width: 15px;
    height: auto;
    filter: drop-shadow(0 0 0 #FAF6EB);
    z-index: -5;
    transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
  }
  
  .star-3 {
    opacity: 0;
    position: absolute;
    top: 40%;
    left: 40%;
    width: 5px;
    height: auto;
    filter: drop-shadow(0 0 0 #FAF6EB);
    z-index: -5;
    transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
  }
  
  .star-4 {
    opacity: 0;
    position: absolute;
    top: 20%;
    left: 40%;
    width: 8px;
    height: auto;
    filter: drop-shadow(0 0 0 #FAF6EB);
    z-index: -5;
    transition: all 0.8s cubic-bezier(0, 0.4, 0, 1.01);
  }
  
  .star-5 {
    opacity: 0;
    position: absolute;
    top: 25%;
    left: 45%;
    width: 15px;
    height: auto;
    filter: drop-shadow(0 0 0 #FAF6EB);
    z-index: -5;
    transition: all 0.6s cubic-bezier(0, 0.4, 0, 1.01);
  }
  
  .star-6 {
    opacity: 0;
    position: absolute;
    top: 5%;
    left: 50%;
    width: 5px;
    height: auto;
    filter: drop-shadow(0 0 0 #FAF6EB);
    z-index: -5;
    transition: all 0.8s ease;
  }
  

.cta-button2:hover {
    background: #EFDBB2;
    color: #1E1E1E;
    box-shadow: 0 0 25px #FFD277;
    border: 3px solid #e0e0e0;
}

.cta-button2:hover .star-1 {
    opacity: 1;
    position: absolute;
    top: -80%;
    left: -30%;
    width: 25px;
    height: auto;
    filter: drop-shadow(0 0 10px #FAF6EB);
    z-index: 2;
}
.cta-button2:hover .star-2 {
    opacity: 1;
    position: absolute;
    top: -25%;
    left: 10%;
    width: 15px;
    height: auto;
    filter: drop-shadow(0 0 10px #FAF6EB);
    z-index: 2;;
}
.cta-button2:hover .star-3 {
    opacity: 1;
    position: absolute;
    top: 55%;
    left: 25%;
    width: 5px;
    height: auto;
    filter: drop-shadow(0 0 10px #FAF6EB);
    z-index: 2;
}
.cta-button2:hover .star-4 {
    opacity: 1;
    position: absolute;
    top: 30%;
    left: 80%;
    width: 8px;
    height: auto;
    filter: drop-shadow(0 0 10px #FAF6EB);
    z-index: 2;
  }
.cta-button2:hover .star-5 {
    opacity: 1;
    position: absolute;
  top: 25%;
  left: 115%;
  width: 15px;
  height: auto;
  filter: drop-shadow(0 0 10px #FAF6EB);
  z-index: 2;
}
.cta-button2:hover .star-6 {
    opacity: 1;
    position: absolute;
    top: 5%;
    left: 60%;
    width: 5px;
    height: auto;
    filter: drop-shadow(0 0 10px #FAF6EB);
    z-index: 2;
}

#img-dois {
    width: 70%;
    border-radius: 20px;
    object-fit: contain;
    -webkit-user-drag: none;
}

/* Rodapé */
#logorodape {
    margin-top: 60px;
    margin-bottom: 40px;
    width: 300px;
    height: auto;
    -webkit-user-drag: none;
}

.footer {
    background-color: #FAF6EB;
    color: #1E1E1E;
    text-align: center;
    padding: 20px;
    border-top: 1px solid #e0e0e0;
}
.footer h1 {
    font-size: 24px;
    margin: 0;
    padding: 10px 0;
}
.footer nav {
    margin: 20px 0;
}
.footer nav a {
    color: #1E1E1E;
    text-decoration: none;
    margin: 0 15px;
    font-size: 16px;
}
.footer nav a:hover {
    text-decoration: underline;
}
.social-media {
    margin: 20px 0;
}
.social-media .icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin: 0 10px;
}
.social-media .icon img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.copyright {
    font-size: 12px;
    color: #e0e0e0;
    margin-top: 20px;
}

.fil0 {
    fill: #fffdef;
  }


  html {
    scroll-behavior: smooth;
  }

  
/* Responsividade celular */
@media (max-width: 768px) {
    #logo {
        width: 280px;
        height: auto;
    }
    .header a {
        color: #1E1E1E;
        text-decoration: none;
        margin-left: 15px;
        margin-right: 15px;
        font-size: 12px;
    }
    #img-um {
        width: 90%;
        object-fit: contain;
    }

    #image-section {
        display: flex;
        flex-direction: column; /* Alteração para coluna em dispositivos menores */
        align-items: center;
        justify-content: center;
        width: 90%;
        max-width: 100%; /* Limita a largura total */
        gap: 10px; /* Espaçamento entre imagem e texto */
        margin-bottom: 20px;
        margin-top: 20px;
    }

    #image-section img {
        width: 100%; /* Ajusta o tamanho da imagem para telas menores */
    }

    .text-section {
        text-align: justify; /* Centraliza o texto para dispositivos menores */
        font-size: 14px;
    }

    .text-section p {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .cta-button {
        width: 100%;
        padding: 12px 20px;
        font-size: 18px;
    }

    #tituloum {
        width: 70%;
        height: auto;
        padding: 30px 0 0;
        object-fit: contain;
    }

    .carousel-container {
        overflow: hidden;
        width: 100%;
        margin: 20px auto;
        margin-top: 20px;
        position: relative;
    }
    
    .carousel {
        display: flex;
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
        width: 100%;
    }
    
    .carousel div {
        flex: 0 0 300px; /* Define a largura fixa de cada item */
        height: 390px;
        margin: 10px;
        padding: 20px;
        background-color: #D1D3D5;
        border-radius: 40px;
        text-align: center;
        scroll-snap-align: center;
    }
    .carousel div p {
        color: #1E1E1E;
        text-align: justify;
    }
    .carousel::-webkit-scrollbar {
        display: none; /* Para Chrome, Safari e Opera */
    }
    
    .cta {
        margin-top: 15px;
        font-size: 17px;
        color: #1E1E1E;
        max-width: 90%;
        text-align: center;
        margin-bottom: 60px;
        margin-top: 10px;
    }


    #imgform {
        margin-top: 20px;
        padding: 30px 0 20px;
        width: 100%;
        border-radius: 20px;
        object-fit: contain;
    }
    
    .cta2 {
        padding: 10px;
        font-size: 15px;
        color: #FAF6EB;
        max-width: 80%;
        text-align: center;
        margin-bottom: 20px;
        margin-top: 10px;
    }
    
    .cta-button2 {
        border-radius: 10px;
        padding: 10px 20px;
        font-size: 15px;
        margin-bottom: 40px;
    }
    
    #img-dois {
        width: 90%;
        object-fit: contain;
    }

    #logorodape {
        margin-top: 30px;
        margin-bottom: 20px;
        width: 200px;
        height: auto;
    }






}