* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Geleasio", serif;
}

html {
    scroll-behavior: smooth !important;
}

.background-img {
    position: fixed;
    top: 0;
    z-index: -1;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}

.mask-background {
    position: fixed;
    top: 0;
    z-index: -1;
    width: 100vw;
    height: 100vh;
    background: #000000;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.17) 0%, rgba(0, 0, 0, 0.63) 100%);
}

header {
    display: flex;
    background-color: #F2D8E1;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.links-header {
    display: flex;
    gap: 1rem;
    list-style: none;
    margin-right: 80px;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
}

.links-header a {
    text-decoration: none;
    color: #59152E
}

.links-header a:hover {
    opacity: 0.7;
}

.links-header a:active {
    opacity: 0.4;
}

h1 {
    margin-left: 80px;
    font-size: 32px;
    font-weight: 700;
    color: #59152E;
    cursor: pointer;
}

.main {
    display: flex;
    gap: 400px;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* hero */

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
}

h2 {
    font-size: 40px;
    font-weight: 700;
    color: #F2D8E1;
    width: 500px;
    text-align: center;
}

h3 {
    font-size: 40px;
    font-weight: 700;
    color: #F2D8E1;
    width: 500px;
    text-align: center;
}

.button-wpp {
    width: 500px;
    height: 40px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    background-color: #59152E;
    color: #F2D8E1;
    font-size: 16px;
    font-weight: 700;
}

.button-wpp:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease-in-out;
}

.button-wpp:active {
    opacity: 0.9;
}

.img-hero {
    width: 450px;
    height: 450px;
    border-radius: 50%;
    border: 5px solid #59152E;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.img-hero:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease-in-out;
}


/* Feedbacks */

.sectionAnimada {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.sectionAnimada.visivel {
  opacity: 1;
  transform: translateY(0);
}

#feedbacks {
    background-color: #f2d8e173;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
}

h4 {
    font-size: 40px;
    font-weight: 700;
    color: #59152E;
    width: 500px;
    text-align: center;
}

.clients {
    display: flex;
    gap: 20px;
    margin-top: 150px;
}

.img-client1 {
    width: 150px;
    height: 200px;
    border-radius: 50%;
    border: 2px solid #59152E;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    margin-bottom: 10px;
}

.img-client2,
.img-client3 {
    width: 150px;
    height: 200px;
    border-radius: 50%;
    border: 2px solid #59152E;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    margin-bottom: 10px;
}

#names {
    font-size: 20px;
    font-weight: 700;
    color: #59152E;
    width: 500px;
    text-align: center;
    margin-bottom: 30px;
}

p {
    font-size: 20px;
    font-weight: 400;
    color: #59152E;
    width: 500px;
    text-align: center;
}

.client1,
.client2,
.client3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 15px;
    width: 500px;
}

/* Minha História */

.sectionAnimada {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.sectionAnimada.visivel {
  opacity: 1;
  transform: translateY(0);
}

#minha-historia {
    background-color: #f5bbcf60;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    min-height: 90vh;
    transition: transform 0.6s ease;
}

h5 {
    font-size: 40px;
    font-weight: 700;
    color: #59152E;
    width: 500px;
    text-align: center;
}

.my-history {
    display: flex;
    flex-direction: row;
    padding: 20px;
    border-radius: 15px;
    gap: 300px;
}

.img-ceo {
    width: 500px;
    cursor: pointer;
    border-radius: 15px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    border: 2px solid #59152E;
}

.img-ceo:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease-in-out;
}

.text {
    font-size: 20px;
    font-weight: 400;
    color: #59152E;
    width: 500px;
    text-align: center;
    border-radius: 15px;
    padding: 20px;
}

/* Contato */

h6 {
    font-size: 40px;
    font-weight: 700;
    color: #59152E;
    width: 500px;
    text-align: center;
}

#contato {
    background-color: #F2D8E1;
    min-height: 20vh;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.insta-photo,
.wpp-photo {
    width: 100px;
    height: 100px;
    cursor: pointer;
    border-radius: 15px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    border: none;
}

.insta-photo:hover,
.wpp-photo:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease-in-out;
}

.insta-photo:active,
.wpp-photo:active {
    opacity: 0.7;
}

.buttons-contatc{
    margin-left: 400px;
}

@media screen and (max-width: 1025px) {
    .background-img {
        display: fixed;
        top: 0;
        z-index: -1;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .mask-background {
        position: fixed;
        top: 0;
        z-index: -1;
        width: 100%;
        height: 100%;
    }

    header {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    h1 {
        display: none;
    }

    .links-header {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .main {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 50px;
        height: 50vh;
        width: 100vw;
    }

    h2 {
        font-size: 30px;
        width: 350px;
        height: 40px;
        margin-bottom: 20px;
    }
    

    h3 {
        font-size: 30px;
        width: 350px;
        height: 40px;
        margin-bottom: 20px;
    }

    .button-wpp {
        font-size: 20px;
        width: 350px;
        height: 40px;
        margin-top: 20px;
        
    }

    .img-hero {
        width: 300px;
        height: 300px;
    }

    #feedbacks {
        width: 100vw;
    }

    .clients {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 50px;
    }

    .client1,
    .client2,
    .client3 {
        width: 300px; 
    }


    p {
        font-size: 15px;
        width: 300px;
    }

    #minha-historia {
        gap: 0;
        justify-content: none;
    }

    .my-history {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
    }

    .text {
        font-size: 15px;
        width: 400px;
    }

    .img-ceo {
        width: 300px;
        height: 300px;
    }

    #contato {
        flex-direction: column;
        align-items: center;
    }

    .buttons-contatc {
        margin-left: 0px;
    }


}

    

