html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Sora', sans-serif;
    background-color: #004ca6f5;
    display: flex;
    justify-content: center;
    position: relative;
    min-height: 100vh;
}

/* Pseudo-elemento para o fundo com opacidade */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/background.jpg');
    /* coloque o caminho da sua imagem */
    background-size: cover;
    background-position: center;
    opacity: 0.04;
    /* controla a intensidade da imagem */
    z-index: -1;
    /* fica atrás do conteúdo */
}

@font-face {
    font-family: "Sora";
    src: url("../fonts/static/Sora-Regular.ttf");
}

@font-face {
    font-family: "Sora-Bold";
    src: url("../fonts/static/Sora-Bold.ttf");
}

@font-face {
    font-family: "Sora-ExtraBold";
    src: url("../fonts/static/Sora-ExtraBold.ttf");
}



main {
    width: 768px;
    /* background-color: rgb(156, 116, 63); */
    text-align: center;
}


.whatsapp {
    position: fixed;
    top: 30px;
    right: 30px;
    width: 54px;
    height: 54px;
    z-index: 1000;
    display: inline-block;
    animation: pulse-whatsapp 1.5s infinite;
    transform-origin: center;
}

@keyframes pulse-whatsapp {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.whatsapp img {
    width: 100%;
    height: auto;
    display: block;
}

.whatsapp .badge {
    position: absolute;
    top: -5px;
    /* sobe um pouco */
    right: -5px;
    /* desloca pra direita */
    background: red;
    color: white;
    font-size: 14px;
    font-weight: bold;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
}




#logo {
    width: 240px;
    margin-top: 80px;
}


.titulo {
    font-size: clamp(2.1rem, 5vw, 3.125rem);
    font-weight: bold;
    font-family: 'Sora', sans-serif;
    color: #ffffff;
    line-height: 1;
    padding-left: 5%;
    padding-right: 5%;
}

.titulo2 {
    font-size: clamp(2rem, 2vw, 2.9rem);
}

.titulo3 {
    font-size: clamp(2.1rem, 3.1vw, 5rem);
    font-weight: bold;
    font-family: 'Sora', sans-serif;
    color: #ffffff;
    line-height: 1;
    padding-left: 5%;
    padding-right: 5%;
}

h2 {
    /* font-size: clamp(1.5rem, 4vw, 2rem); */
    font-size: clamp(2rem, 2.7vw, 2.9rem);
    font-weight: bold;
    font-family: 'Sora', sans-serif;
    color: #ffffff;
    line-height: 1;
    margin: 2.5rem 1rem 0 1rem;
}

h3 {
    font-weight: bold;
    font-family: 'Sora', sans-serif;
    color: #ffffff;
    line-height: 1;
}

p {
    font-family: 'Sora', sans-serif;
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.3;
}

.textoPrincipal {
    width: 50%;
}

.texto {
    width: 90%;
    margin-top: 1rem;
    margin-bottom: 1rem;
}


.amarelo {
    color: #f2cb00;
    font-family: 'Sora-ExtraBold', sans-serif;
}

.imagens {
    width: 100%;
    height: 500px;
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 20px;
    object-fit: cover;
    object-position: center;
    transition: 1s;
}


.imagens2pai {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
}

.imagens2 {
    width: 46%;
    height: 250px;
    margin-top: 10px;
    margin-bottom: 20px;
    border-radius: 10px;
    object-fit: cover;
    object-position: center;
    transition: 1s;
}

.imagens2:hover {
    transform: scale(1.02);
}

.botaoLink {
    text-decoration: none;
    width: 16.75rem;
    height: 3.2rem;
}

.botaoLink2 {
    text-decoration: none;
    width: 26.75rem;
    height: 3.2rem;
}

.botao,
.botao2 {
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    background-color: #f2cb00;
    color: #00317A;
    font-family: 'Sora-Bold', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    text-decoration: none;
    border-radius: 2rem;
    cursor: pointer;
    letter-spacing: 0.3rem;
    -top: 1rem;
    transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
    margin-top: 1rem;
}

.botao2 {
    letter-spacing: 0.1rem;
    font-size: 0.8rem;

}

.botaoLink:focus,
.botaoLink2:focus {
    outline: 0px;
    outline-offset: 2px;

}

.botaoLink:focus .botao,
.botaoLink2:focus .botao2 {
    border: 2px solid rgb(255, 255, 255);
    box-sizing: border-box;
    box-shadow: inset 0 0 0 4px #004ca6f5;
    transform: scale(1.1);
}


.botao img,
.botao2 img {
    width: 18px;
    margin-left: 10px;
}

.botao2 img {
    width: 18px;
    margin-left: 0px;
    margin-right: 10px;
}

.botao:hover,
.botao2:hover {
    background-color: #ffe552;
    color: #00317a;
    transition: 0.3s;
    transform: scale(1.0425);
}

section {
    width: 100%;
    display: flex;
    flex-direction: column;
    /* empilha os elementos */
    align-items: center;
    /* centraliza horizontalmente */
}

section a {
    text-decoration: none;
}

/* hr {
    border: none;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.212);
    margin-top: 5rem;
    margin-bottom: 4rem;
} */


main hr {
    width: 90vw;
    /* ocupa toda a largura da viewport */
    position: relative;
    left: 50%;
    /* coloca o ponto de referência no centro do main */
    transform: translateX(-50%);
    /* centraliza o hr na viewport */
    border: none;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.212);
    margin: 7rem 0 4rem 0;
}

.setacompleta {
    width: 4rem;
    margin-top: 5rem;
    transition: transform 0.25s ease;
}

.setacompleta:hover {
    transform: scale(1.2);
    transition: transform 0.25s ease;
}

.setacompleta img {
    width: 100%;
}


.setacompleta:focus {
    outline: 0px;
    outline-offset: 2px;
}

.setacompleta:focus img {
    transition: transform 0.7s;
    transform: scale(1.3);

}


.clientes,
.garantia {
    width: 85%;
    margin-top: 3rem;
    margin-bottom: 4rem;
    border-radius: 20px;
    object-fit: cover;
    object-position: center;
    transition: 1s;
}

.garantia {
    width: 90%;
}

.lista {

    width: 40%;
    text-align: left;
    color: #ffffff;
    margin-left: -10%;
    list-style: none;

}


.lista li {
    padding: 10px;
    padding-left: 54px;
    border-radius: 8px;
    background: url('../img/check.png') no-repeat left center;
    background-position: 12px center;
    background-size: 30px 30px;

}

.sociais {
    margin-top: 2rem;
    display: flex;
}

.sociais img {
    width: 4rem;
    height: 4rem;
    margin: 0 10px 0 10px;
    transition: transform 0.25s ease;
    cursor: pointer;
}

.sociais a:focus {
    outline: none;
    border-radius: 50px;
    transform: scale(1.2);
}

.sociais :hover {
    transform: translateY(-2%);
}




/* Telas grandes */
@media (max-width: 1440px) {}

/* Notebooks e tablets landscape */
@media (max-width: 1024px) {}

/* Tablets portrait */
@media (max-width: 768px) {

    main {
        width: 768px;
    }

    .imagens {
        width: 90%;
        height: 400px;
    }

    .textoPrincipal {
        width: 80%;
    }

    .imagens2pai {
        width: 86%;
    }

    .botaoLink,
    .botaoLink2 {
        width: 90%;
        height: 3rem;
    }

    .lista {
        width: 80%;
    }

    .texto {
        width: 87%;
    }

    main hr {
        margin: 3rem 0 2rem 0;
    }

}

/* Celulares grandes */
@media (max-width: 425px) {

    main {
        width: 425px;
    }

    .textoPrincipal {
        width: 90%;
    }


    .imagens2pai {
        flex-direction: column;
        width: 86%;
    }

    .imagens2 {
        width: 100%;
        height: 250px;
    }


}

hr {

    margin-top: 2rem;
    margin-bottom: 2rem;
}

.setacompleta {

    margin-top: 2.5rem;
    display: inline-block;
    animation: arrow-bounce 1.5s ease-in-out infinite;

}

@keyframes arrow-bounce {
    0% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(3px);
        /* desce rápido */
    }

    100% {
        transform: translateY(0);
        /* sobe devagar */
    }
}

/* Celulares médios */
@media (max-width: 375px) {
    main {
        width: 375px;
    }

    .imagens {
        height: 300px;
    }

    .titulo2 {
        font-size: clamp(1.3rem, 2vw, 1.6rem);
    }

    .titulo3 {
        font-size: clamp(1.5rem, 2.1vw, 2rem);
        font-weight: bold;
        font-family: 'Sora', sans-serif;
        color: #ffffff;
        line-height: 1;
        padding-left: 5%;
        padding-right: 5%;
    }

}

/* Celulares pequenos */
@media (max-width: 320px) {
    main {
        width: 320px;
    }

    .titulo {
        font-size: 1.8rem;
    }

    .textoPrincipal {
        width: 80%;

    }


}



.reveal {
    opacity: 0;
    transition: opacity 600ms ease, transform 600ms ease;
    will-change: opacity, transform;
}

.reveal[data-effect="rise"] {
    transform: translateY(30px);
}

.reveal[data-effect="drop"] {
    transform: translateY(-30px);
}

.reveal[data-effect="left"] {
    transform: translateX(-30px);
}

.reveal[data-effect="fade"] {
    transform: none;
}

.reveal.active {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}