@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap');

@property --myColor1 {
    syntax: '<color>';
    initial-value: #182955;
    inherits: false;
}
  
  @property --myColor2 {
    syntax: '<color>';
    initial-value: #29ABE2;
    inherits: false;
}

body {
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23e72300' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E") !important;
}
   
.carousel-control-next-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23e72300' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E") !important;
}   

body {
    font-family: "Roboto", serif;
}

#header {
    color: #182955;
    display: flex;
    padding: 0 100px;
    width: 100vw;
}


#header #text_ads {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    width: 55%;
}
#header #text_ads div {
    width: 100%;
}

#header #text_ads a {
    text-align: center;
}

#header #background_ads {
    position: relative;
    height: 500px;
    width: 45%;
    background: url("https://furo31.com/wp-content/uploads/2024/11/TELA121.png") no-repeat center center;
    background-size: cover;
    background-position-y: 3rem;
}

#header h1 {
    font-weight: bolder;
}
#header h2 {
    font-weight: 400;
}

#header a {
    display: inline-block;
    background: linear-gradient(90deg, var(--myColor1), var(--myColor2)); /* Gradiente linear */
    color: white;
    cursor: pointer;
    padding: 15px 30px;
    border-radius: 7px;
    transition: --myColor1 1s, --myColor2 1s;
    text-decoration: none;
    font-weight: bold;
}

#header a:hover {
    --myColor1: #29ABE2;
    --myColor2: #182955
}

#main {
    position: relative;
    background-color: #182955;
    height: 500px;
    z-index: 99;
    color: #fff;
    gap: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#main #customCarousel {
    width: 700px;
    border: solid white 2px;
}

#form-budget {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: column;
    padding: 40px 0;
}

/* formulario */
#wpforms-54065 {
    box-shadow: 2px 6px 19px 3px #0000004a;
    border-radius: 10px;
    padding: 20px 40px;
    width: 700px;
}


#whatsapp_wpforms {
    display: flex   ;
    margin-top: 20px;
    width: 30%;
    justify-content: center;
    align-items: center;
    background-color: #25d366;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

#whatsapp_wpforms:hover {
    background-color: #128c7e; /* Cor do WhatsApp no hover */
}

#whatsapp_wpforms img {
    width: 25px;
    height: 25px;
    margin-right: 10px;
}

@media screen and  (max-width: 1420px) {
    #header #background_ads {
        background-position-y: 4rem;
    }
}

@media screen and  (max-width: 1061px) {
    #header {
        padding: 0 2rem;
    }

    #header #text_ads {
        width: 100%;
    }
    #header #background_ads {
        width: 69%;
        background-size: 27rem;
        background-position-y: 10rem;
    }
}

@media screen and  (max-width: 848px) {
    h1{
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    h3 {
        font-size: initial;
    }

    #header { 
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 1rem;
    }

    #header #background_ads {
        margin-top: -120px;
        width: 100%;
    }

    #main {
        padding: 1rem 0.4rem;
        height: initial !important;
    }

    #main #customCarousel {
        width: initial !important;
    }

    #form-budget{
        padding: 0 0.5rem;    
    }

    #wpforms-54065 {
        width: initial !important;
    }
}
