body {
    margin: 0;
    font-family: Arial, sans-serif;
}
html {
    scroll-behavior: smooth;
}


header {
    background-color: white;
    padding: 10px 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1000;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.logo img {
    height: 100px;
    max-width: 100%;
    transition: height 0.3s;
}

.desktop-menu {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.desktop-menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.desktop-menu ul li {
    margin: 0 20px;
    transition: transform 0.3s;
}

.desktop-menu ul li:hover {
    transform: scale(1.1);
}

.desktop-menu ul li a {
    text-decoration: none;
    color: #551b10;
    font-weight: bold;
    font-size: 1.2em;
    transition: color 0.3s;
}

.desktop-menu ul li:hover a {
    color: #551b10;
}

.btn.fale-conosco {
    background-color: #551b10;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin-left: 20px;
    transition: transform 0.3s;
}

.btn.fale-conosco:hover {
    transform: scale(1.1);
}

.mobile-menu-icon {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-around;
    height: 30px;
    position: absolute;
    right: 20px;
}

.mobile-menu-icon div {
    width: 40px;
    height: 5px;
    background-color: #551b10;
    transition: all 0.3s;
}

.mobile-menu {
    position: absolute;
    top: 159px;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.mobile-menu ul li {
    margin: 20px 20px;
    font-size: 1.2em;
}

.mobile-menu ul li a {
    text-decoration: none;
    color: #ffa400;
    font-weight: bold;
    font-size: 1.2em;
    transition: color 0.3s;
}

.mobile-menu ul li:hover a {
    color: #551b10;
}

.mobile-menu .btn.fale-conosco {
    display: block;
    margin: 20px;
    padding: 15px 30px;
    font-size: 1.0em;
}

.slider {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.slides {
    display: flex;
     height: 450px;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
    position: relative;
    height: 250px;
}

.slide img {
    width: 100%;
    height: 250px;
    filter: brightness(50%);
    object-fit: cover;
}

.caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    padding: 20px;
    background: rgb(0 0 0 / 17%);
    border-radius: 10px;
    max-width: 100%;
    width:50%
}

.caption h2 {
    font-size: 35px;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background: rgba(0, 0, 0, 0.5);
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.dots {
    text-align: center;
    padding: 20px;
    background: transparent;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color: #717171;
}

.about-us {
    background-color: #f7f7f7;
}

.about-us .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0 auto;
    max-width: 1200px;
}

.about-text {
    flex: 1;
    padding: 20px;
    max-width: 600px;
}

.about-text h2 {
    color: #FFA400;
    font-size: 2.2em;
    margin-bottom: 20px;
    text-align: center;
}

.about-text p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1.1em;
}
.about-text .btn {
    background-color: #551b10;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: block;
    width: fit-content;
    margin: 0 auto;
}

.about-images {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.about-images img {
    width: calc(33.33% - 10px);
    max-width: 100%;
    border-radius: 10px;
    transition: transform 0.3s;
}

.about-images img:hover {
    transform: scale(1.05);
}
.suppliers {
    padding: 0px 10px;
    background-color: white;
    text-align: center;
}

.suppliers h2 {
    color: #FFA400;
    font-size: 2.2em;
    margin-bottom: 40px;
}

.suppliers-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.suppliers-logos img {
    width: 150px;
    margin: 20px;
    filter: grayscale(100%);
    transition: filter 0.3s, transform 0.3s;
}

.suppliers-logos img:hover {
    filter: none;
    transform: scale(1.1);
}

.contact-form {
    padding: 50px 20px;
    background-color: #f7f7f7;
    text-align: center;
}

.contact-form h2 {
    color: #FFA400;
    font-size: 2.2em;
    margin-bottom: 40px;
}

.contact-form form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.contact-form label {
    display: block;
    margin-bottom: 10px;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    box-sizing: border-box;
}

.contact-form button {
    background-color: #551b10;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.contact-form button:hover {
    background-color: #EA4C24;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 10px;
    }

    .logo img {
        height: 130px;
        margin-bottom: 10px;
    }

    .desktop-menu {
        display: none;
    }

    .mobile-menu-icon {
        display: flex;
    }

    .mobile-menu.active {
        max-height: 500px;
        opacity: 1;
        z-index: 100000;
        background-color: white;
    }

    .mobile-menu ul {
        padding: 0;
    }

    .mobile-menu ul li {
        margin: 10px 20px;
    }

    .mobile-menu ul li a {
        font-size: 1.1em;
    }

    .mobile-menu .btn.fale-conosco {
        margin: 15px;
        padding: 10px 20px;
    }

    .caption {
        top: 50%;
        padding: 0px;
        width:70%;
    }

    .caption h2 {
        font-size: 1.2em;
    }

    .prev, .next {
        padding: 10px;
        font-size: 14px;
    }

    .dot {
        height: 10px;
        width: 10px;
    }

    .about-us .container {
        flex-direction: column;
        align-items: center;
    }

    .about-text {
        max-width: 100%;
        text-align: center;
    }

    .about-images img {
        max-width: 80%;
    }
.slide img{
    height:250px
}
    .slides{
     height:250px   
    }
    .suppliers-logos img {
        width: 100px;
    }
}

@media (min-width: 769px) {
    .mobile-menu-icon {
        display: none;
    }

    .desktop-menu {
        display: flex;
    }
}

@media (min-width: 1024px) {
    .slide {
        height: 800px; /* Ajuste a altura conforme necessário */
    }

    .slide img {
        height: 100%;
        object-fit: cover; /* Para garantir que a imagem preencha o slide */
        object-position: bottom; /* Para mostrar a parte de baixo da imagem */
    }

    .caption {
        top: 40%; /* Ajuste a posição da legenda conforme necessário */
    }
}

.whatsapp-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
}

.whatsapp-float {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.whatsapp-icon:before {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 2px 2px 5px #999;
    margin-left: 10px;
}

.whatsapp-bubble {
    background-color: #FFF;
    color: #000;
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 2px 2px 5px #999;
    white-space: nowrap;
    display: flex;
    align-items: center;
    position: relative;
}

.whatsapp-bubble:before {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent #FFF;
}
.promo-banner {
    position: relative;
    background: url('imgs/3.svg') no-repeat center center/cover;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
   
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Fundo escuro transparente */
    z-index: 1;
}

.promo-content {
    position: relative;
    text-align: center;
    color: white;
    z-index: 2;
     margin:15px
}

.promo-content h1 {
    font-size: 2.5em;
    margin: 0 0 10px;
}

.promo-content p {
    font-size: 1.2em;
    margin: 0 0 20px;
}

.btn.promo-button {
    background-color: #FFA400;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s;
    font-size:12px;
}

.btn.promo-button:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .promo-banner {
        height: 300px;
    }

    .promo-content h1 {
        font-size: 1.5em;
    }

    .promo-content p {
        font-size: 1em;
    }

    .btn.promo-button {
        padding: 10px 20px;
    }
}

.about-totem {
    background-color: #f7f7f7;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
}

.about-totem .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.totem-text {
    flex: 1;
    padding: 20px;
    max-width: 600px;
}

.totem-text h2 {
    color: #FFA400;
    font-size: 2.2em;
    margin-bottom: 20px;
}

.totem-text p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1.1em;
}

.totem-text .btn {
    background-color: #FFA400;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: block;
    width: fit-content;
}

.totem-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.totem-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .about-totem .container {
        flex-direction: column;
        text-align: center;
    }

    .totem-text {
        max-width: 100%;
    }

    .totem-image img {
        max-width: 80%;
    }
}
footer {
    background-color: #ffffff;
    color: white;
    padding-top: 20px;
}

.footer-top {
    background-color: #f96332;
    padding: 20px 0;
}

.footer-top .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: center;
}

.contact-info {
    display: flex;
    justify-content: space-around;
    width: 100%;
    flex-wrap: wrap;
}

.contact-item {
    text-align: center;
    flex: 1;
    padding: 0 10px;
    margin-bottom: 10px;
}

.contact-item i {
    font-size: 24px;
    margin-bottom: 10px;
}

.contact-item p {
    margin: 5px 0;
    font-weight: bold;
}

.contact-item span {
    display: block;
    font-size: 14px;
}

.footer-bottom {
    padding: 40px 0;
    background-color: #fcf19f;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
}
.footer-top {
    background-color: #FFA400;
    padding: 20px 0;
}

.footer-top .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    flex: 1;
    margin: 20px;
    min-width: 200px;
}

.footer-logo img {
    max-width: 250px;
    margin-bottom: 20px;
}

.footer-menu {
    text-align: center;
    font-size:20px;
}

.footer-menu h3 {
    margin-bottom: 20px;
    color:#551b10
}

.footer-menu ul {
    list-style: none;
    padding: 0;
}

.footer-menu ul li {
    margin-bottom: 10px;
}

.footer-menu ul li a {
    color: #551b10;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-menu ul li a:hover {
    color: #f96332;
}

.newsletter h3 {
    margin-bottom: 20px;
}

.newsletter p {
    margin-bottom: 20px;
}

.newsletter form {
    display: flex;
    justify-content: center;
    align-items: center;
}

.newsletter input {
    flex: 1;
    padding: 10px;
    border-radius: 5px 0 0 5px;
    border: none;
    margin-right: -5px;
    max-width: 250px; /* Limite de largura para campos de entrada */
}

.newsletter button {
    padding: 10px 20px;
    background-color: #f96332;
    border: none;
    border-radius: 0 5px 5px 0;
    color: #551b10;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter button:hover {
    background-color: #d9531e;
}

.footer-bottom-logo {
    background-color: #551b10;
    padding: 10px 0;
    text-align: center;
}

.footer-bottom-logo .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-bottom-logo p {
    margin: 5px 0;
    font-size: 14px;
}

@media (max-width: 768px) {
    .footer-top .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-logo, .footer-menu, .newsletter {
        margin: 10px 0;
    }

    .newsletter form {
        flex-direction: column;
    }

    .newsletter input {
        margin: 0 0 10px 0;
        border-radius: 5px;
    }

    .newsletter button {
        border-radius: 5px;
    }
}
h2 {
    font-family: 'Fredoka One', cursive;
}
h3{
    font-size:19px;
}