@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: "Poppins", sans-serif;
}

.apresentacao {
    background-image: linear-gradient(rgb(0 0 0 / 83%), rgb(0 0 0 / 76%)), url('../images/64862.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.call-two .duvidas-frequentes {
    width: 100%;
}

.box-shadow-one {
    box-shadow: 5px 5px 10px 3px gainsboro;
    border-radius: 10px;
}

.whatsapp img {
    position: fixed;
    bottom: 15px;
    right: 25px;
    width: 4rem;
}


.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
}

.apresentacao h1 {
    font-size: xx-large;
}



@media screen and (min-width: 769px) {
    .apresentacao {
        padding: 5rem 15rem;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        height: 100vh;
    }

    .apresentacao .show {
        max-width: 1200px;
        text-align: center;

    }

    .apresentacao li {
        font-size: larger;
    }

    .call-one {
        padding: 5rem 15rem;
    }

    .call-one .call-one-1 {
        text-align: center;
    }

    .call-two {
        padding: 5rem 15rem;
    }

    .call-two .call-two-1 {
        display: flex;
        justify-content: center;
    }

    .call-two .duvidas-frequentes {
        max-width: 1200px;
    }

    .call-tree {
        padding: 5rem 15rem;
    }

    .papnp {
        padding: 5rem 15rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .papnp .mb-3 {
        max-width: 1200px;
    }

    .call-to-action {
        padding: 15px;
        /* border: 2px solid gainsboro; */
        color: gainsboro;
        text-decoration: none;
        border-radius: 15px;
        font-size: 22px;
        transition: 0.30s;
        background-color: #33bf45;
    }

    .call-to-action:hover {
        background-color: #61CE70;
        transition: 0.30s;
    }

}

@media screen and (max-width: 768px) {

    .call-one,
    .call-two,
    .call-tree,
    .papnp,
    .garantia-direitos,
    .etapas-processo,
    footer {
        padding: 1rem;
    }

    .apresentacao {
        padding: 10%;
    }

    .call-to-action {
        text-wrap: nowrap;
        padding: 15px;
        color: gainsboro;
        text-decoration: none;
        border-radius: 15px;
        transition: 0.30s;
        background-color: #61CE70;
    }

    .call-to-action:hover {
        background-color: rgba(220, 220, 220, 0.329);
        transition: 0.30s;
    }
}



/* Animaçoes */
/* Fade-in */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slide-in on scroll */
.slide-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-in-out;
}

.slide-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Pulse effect for CTA buttons */
.call-to-action {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.call-to-action:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(40, 167, 69, 0.6);
}


.call-one-1 {
    animation: pulseAlert 1.2s ease-in-out;
}

@keyframes pulseAlert {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
