html {
    box-sizing: border-box;
    scroll-behavior: smooth; /* Suaviza a rolagem ao navegar */
}

/* Aplica o box-sizing a todos os elementos e seus pseudo-elementos */
*, *::before, *::after {
    box-sizing: inherit;
}

html, body {
    margin: 0;
    padding: 0;
    padding-top: 0px;
    width: 100%;
    height: 100%;
    color: #333;
    font-size: 16px;
    line-height: 1.5;
    font-family: 'Montserrat', sans-serif;
    scroll-behavior:smooth;
}

a {
    text-decoration: none !important;
}

.logo-container {
    display: flex;      /* Mantém o logo centralizado */
    justify-content: center;
    align-items: center;
    margin-left: 200px; /* Se essa margem for necessária */
}

.logo {
    max-width: 100%;    /* Evita que o logo ultrapasse o container */
    width: auto;    
    height: 60px; /* Ajuste conforme necessário */ 
}

.container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 20px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.3; /* Deixa o vídeo com um efeito esfumaçado */
}

.container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
    z-index: 2;
}

.container-machine {
    position: relative;
    width: 100%;
    z-index: 1;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.machines-column {
    width: 100%;
} 

.container-machine::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.container-machine .col-md-6 {
    display: flex;
    flex-direction: column;
    justify-content: start; /* Centraliza verticalmente o conteúdo dentro da coluna */
}

.content {
    flex: 1;
    width: 100%;
    height: auto;
}

.footer {
    bottom: 0;
    z-index: 100;
    width: 100%;
    color: #fff;
    display: flex;
    justify-content: center;
    background-color: #15224f;
    border-top: 1px solid #050505;
    padding: 40px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
    padding: 40px 20px;
    color: white;
}

.footer-container > div {
    flex: 1; 
    text-align: center;
}

.footer-column {
    max-width: 250px;
    text-align: center;
}


.social-md {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centraliza o título e os ícones */
    gap: 10px; /* Espaço entre o título e os ícones */
    text-align: center;
    flex-direction: column;
}

.social-md .icons {
    display: flex;
    gap: 10px; /* Espaço entre os ícones */
}

.social-md img {
    width: 80px; 
    height: auto;
    transition: transform 0.3s ease;
}

.social-md img:hover{
    transform: scale(1.2);
    transition: 2s;
}

.locations-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
    background-color: #101d46;
    padding: 40px 20px;
    color: white;
}

.location-box {
    max-width: 300px;
    text-align: center;
}

.location-title {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.2rem;
}

.location-title:hover {
    color: #ccc;
}

.subtitle {
    font-size: 14px;
    margin: -10px 0 10px;
    color: #ccc;
    font-style: italic;
}

.location-text p,
.contact-content p {
    margin: 2px 0;
    font-size: 12px;
}

.icons a {
    margin: 0 10px;
}

.location-info {
    text-align: left;
    gap: 10px !important;
}

.contact-info {
    text-align: left;
    gap: 10px !important;
}

.location-content {
    display: flex;
    align-items: center;
    gap: 10px; 
    justify-content: center;
}

.contact-content {
    display: flex;
    flex-direction: column;
    align-items: left;
}

.contact-content a {
    text-decoration: none; 
    color: inherit;
}

.contact-content a:hover {
    text-decoration: none; 
    color: #fff; 
}

.contact-content p {
    margin: 5px;
}

.location-info .point {
    width: 70px;
    height: auto;
}

.location-content div p {
    margin: 5; 
    line-height: 1.2; 
}

.reserves {
    flex: 4;
    display: flex;
    text-align: left;
    padding: 30 0 30 0;
    flex-direction: column;
    justify-content: space-between;
}

.reserves h2,h3,h4{
    padding-bottom: 0px!important;
}

.reserves .point{
    bottom: 0.5em;
    max-width: 2em;
    position: relative;
}

.reserves .point:hover{
    transform: scale(1.5);
    transition: 2s;
}

.contacts {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin-left: 25px;
    margin-right: 25px;
    text-align: center;
}

.contacts h2{
    margin-bottom: 40px!important;
}

.btn-custom {
    background-color: #28a745; /* Verde */
    color: #ffffff; /* Texto branco */
    border: none; /* Remove a borda */
    padding: 10px 20px; /* Ajuste de tamanho */
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px; /* Bordas arredondadas */
    cursor: pointer; /* Muda o cursor ao passar por cima */
    transition: background-color 0.3s ease-in-out;
}

.btn-custom:hover {
    background-color: #218838; /* Verde mais escuro ao passar o mouse */
}

.contact-wrapper {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    background-color: transparent; /* Removido o azul daqui */
}

.contacts.bg-white-form {
    flex: 1;
    max-width: 600px;
    background-color: #0e1b47; /* Aplicado aqui o azul escuro */
    padding: 40px;
    border-radius: 10px;
    color: #fff;
}

.contacts.bg-white-form h3 {
    color: #ffffff;
    margin-bottom: 20px;
}

.contact-details {
    flex: 1;
    max-width: 350px;
    padding: 20px;
    background-color: transparent; /* Fora do quadro azul */
    color: #333;
}

.contact-details h4 {
    margin-bottom: 15px;
    color: #0e1b47;
}

.contact-details p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #0e1b47;
}

.contact-details strong {
    color: #0e1b47; /* cor azul escura para destacar */
    display: inline-block;
    margin-bottom: 5px;
}

.social-icons a {
    color: #0e1b47;
    font-size: 24px;
    margin-right: 10px;
}

.social-icons a:hover {
    color: #0d6efd;
}

.contacts .form-floating{
    color: #000;
    font-size: 16px;
    margin-bottom: 30px;
}

.t-area{
    height: 150px!important;
}

.rating {
    display: flex;
    padding-bottom: 60px;
    flex-direction: row-reverse;
    justify-content: space-evenly;
}

.rating input {
    display: none;
}

.rating label {
    width: 1.5em;
    font-size: 2rem;
    cursor: pointer;
    color: #ffffff;
    margin-right: 3px;
    position: relative;
}

.rating label::before {
    left: 0;
    display: block;
    color: #cccccc;
    content: "\f005";
    font-weight: 900;
    position: absolute;
    font-family: "Font Awesome 5 Free";
}

.rating input:checked ~ label::before {
    color: #FFD700;
}

.rating label:hover ~ label::before,
.rating label:hover::before {
    color: #FFD700;
}


#nbar {
    width: 100%;
    height: 12vh;
    display: flex;
    justify-content: space-evenly;
    flex-direction: row;
    align-items: center;
    position: fixed;
    background-color: #00a5ec;
    padding: 3vh 15vh 3vh 15vh;
    filter: drop-shadow(2px 2px 10px rgb(61, 61, 61));
    top: 0;
    z-index: 9999999;
}

#nbar.shrink {
    height: 6vh !important;
    padding: 1vh 15vh !important;
    transition: all 0.3s ease;
}

#nbar.shrink .nbar-div a{
    color: #15224f;
    text-decoration: none;
    font-size: 1em;
    text-transform: uppercase;
}

#nbar.shrink img{
    padding: 4vh;
}

.nbar a {
    flex: 1;
}

.nbar img {
    padding: 1vh;
}

.nbar-div {
    flex: 3;
    width: 100%;
}

.nbar-div ul {
    /*display: flex;*/
    /*justify-content: end;*/
    flex-direction: row;
    align-items: center;
    margin-bottom: 0;
}

.nbar-div li {
    list-style: none;
    padding: 0 4vh 0 4vh;
}

.nbar-div a {
    color: #15224f;
    text-decoration: none;
    font-size: 1.2em;
    text-transform: uppercase;
    font-weight: 600;
}

#nbar .menu {
    display: flex;
}

/* ================== PRIMEIRA LINHA (LOGO + CONTATO) ================== */
.header-top {
    position: fixed;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 15px 40px;
    border-bottom: 2px solid #ddd;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Sombra sutil */
    background-color: white; /* Garante que fique visível */
    z-index: 1000; /* Mantém acima de outros elementos */
}

.contact-header {
    display: flex;
    gap: 30px; /* Espaço entre os contatos */
    margin-right: 200px;
}

.contact-item {
    text-decoration: none; /* Remove o sublinhado */
    color: inherit; /* Mantém a cor original do texto */
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item:hover {
    text-decoration: none; /* Garante que o sublinhado não apareça no hover */
}

.contact-item img {
    width: 30px;
    height: 30px;
}

.contact-label {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
}

.contact-number {
    font-size: 16px;
    font-weight: bold;
}

/* ================== SEGUNDA LINHA (MENU) ================== */
.header-bottom {
    position: fixed;
    top: 90px; /* Ajuste conforme a altura do header-top */
    left: 0;
    width: 100%;
    background-color: #009CFF;
    z-index: 999;
    transition: transform 0.3s ease-in-out;
}

.header-hidden {
    transform: translateY(-100%); /* Move para cima e esconde */
}

.menu {
    list-style: none;
    display: flex;
    gap: 5px;
    padding: 0;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.menu li {
    position: relative;
}

.menu a {
    color: #15224f;
    font-weight: bold;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
    text-align: center;
    line-height: 1.2; /* ajuda a compactar mais */
}

.menu a:hover {
    background-color: #ffffff;
    border-radius: 5px;
}

/* ================== MENU DROPDOWN ================== */
.header-bottom .menu .dropdown-menu {
    display: none;
    position: absolute;
    background: white;
    list-style: none;
    border-radius: 5px;
    min-width: 200px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
    padding: 5px 0;
    margin: 0;
    max-height: 90vh;
    z-index: 999;
    border: 1px solid #106aaa;
    color: #15224f;
    font-weight: bold;
}

.menu li:hover > .dropdown-menu {
    display: block;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    position: absolute;
    white-space: nowrap;
    z-index: 1000;
}

.dropdown-submenu.open-left .dropdown-menu {
    left: auto;
    right: 100%;
}

/* Submenu (categoria > subcategoria) */
.menu li .dropdown-submenu {
    position: relative;
}

.menu li .dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
    display: none;
    color: #15224f;
    font-weight: bold;
}

.menu li .dropdown-submenu:hover > .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
    font-weight: bold;
    line-height: 1.2; /* mais compacto */
}

/* Links */
.dropdown-item {
    display: block;
    padding: 8px 16px;
    color: #15224f;
    text-decoration: none;
    white-space: nowrap;
    font-size: 13.5px;
    font-weight: bold;
}

.dropdown-item:hover {
    background-color: #f2f2f2;
    color: #000;
}

.dropdown-menu a {
    color: black;
    color: #15224f;
    text-decoration: none;
    white-space: nowrap;
    font-size: 13.5px;
    font-weight: bold;
}

.menu .dropdown-menu > li {
    border-bottom: 1px solid #e0e0e0; /* cor discreta */
}

/* Remove o traço do último item */
.menu .dropdown-menu > li:last-child {
    border-bottom: none;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-toggle::after {
    display: none !important;
}

.hidden {
    display: none;
}


#main-carousel {
    max-width: 1200px;
    width: 80%;
    height: 500px; /* ou auto, ou com aspect-ratio */
    margin: 0 auto;
}

#main-carousel, .carousel-inner {
    height: 600px; /* ajuste conforme seu layout */
}

.carousel-background {
    background-color: #15224f; /* Azul escuro */
    padding: 40px 0; /* Espaço interno */
}

.carousel-background-used {
    background-color: #009CFF; /* Azul escuro */
    padding: 40px 0; /* Espaço interno */
}

.carousel-banner {
    background-color: #ffffff; /* Azul escuro */
    padding: 20px 0; /* Espaço interno */
}

.carousel-title-banner {
    text-align: center;
    color: #15224f;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.carousel-title {
    text-align: center;
    color: white;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}

.carousel-title-link-usd,
.carousel-title-link-new {
    text-decoration: none; /* Remove o sublinhado */
    text-align: center;
    color: white;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 40px;
}

.carousel-title-link-new:hover {
    text-decoration: none; /* Remove o sublinhado */
    color: #009CFF; /* Altere para a cor desejada ao passar o mouse */
    text-align: center;
}

.carousel-title-link-usd:hover {
    text-decoration: none; /* Remove o sublinhado */
    color: #15224f; /* Altere para a cor desejada ao passar o mouse */
    text-align: center;
}

.carousel-subtitle {
    font-size: 20px;
}

.spacer {
    height: 20px; /* Ajuste a altura do espaço entre os carrosséis */
    background-color: transparent; /* Mantém o fundo branco ou azul, dependendo do layout */
}

.spacer-div-home{
    height: 150px;
}

.spacer-home {
    height: 20px; /* Ajuste a altura do espaço entre os carrosséis */
    background-color: transparent; /* Mantém o fundo branco ou azul, dependendo do layout */
}

.swiper,
.swiper * {
    box-sizing: border-box !important; /* Impede herança inesperada */
}

.swiper {
    width: 90%; /* Ajusta a largura do carrossel */
    max-width: 1200px; /* Para não ficar exagerado em telas grandes */
    margin: auto; /* Garante centralização */
    position: relative !important; /* Mantém os elementos internos bem alinhados */
}

.swiper-slide {
    background: transparent; /* Garante que os slides fiquem sem fundo */
    padding: 10px;
}

h4, p {
    color: white; /* Para os textos ficarem visíveis */
    margin-top: 10px;
}

.swiper-button-prev,
.swiper-button-next {
    color: #ffffff !important; /* Azul para destacar as setas */
    width: 50px !important;
    height: 50px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 10; /* Mantém as setas visíveis */
    box-sizing: content-box !important; /* Evita herança indesejada */
}

.swiper-button-prev {
    left: -10px !important; /* Move um pouco para fora */
}

.swiper-button-next {
    right: -10px !important; /* Move um pouco para fora */
}

.swiper-button-prev-bn,
.swiper-button-next-bn {
    color: #15224f !important; /* Azul para destacar as setas */
    width: 50px !important;
    height: 50px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 10; /* Mantém as setas visíveis */
    box-sizing: content-box !important; /* Evita herança indesejada */
}

.swiper-button-prev-bn {
    left: -10px !important; /* Move um pouco para fora */
}

.swiper-button-next-bn {
    right: -10px !important; /* Move um pouco para fora */
}

.mySwiperBanners {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Estilos específicos para os banners */
.banner-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 220px; /* Ajuste conforme necessário */
}

.banner-slide img {
    width: 100%; /* Faz a imagem ocupar toda a largura do slide */
    height: auto; /* Mantém a proporção original */
    max-width: 400px; /* Define um tamanho máximo para as imagens */
    max-height: 200px; /* Limite de altura para evitar distorção */
    object-fit: contain; /* Mantém a imagem inteira sem cortar */
    border-radius: 10px; /* Opcional: bordas arredondadas */
    transition: transform 0.3s ease-in-out;
}

/* Efeito ao passar o mouse */
.banner-slide img:hover {
    transform: scale(1.05);
}

/* Ajusta o contêiner do carrossel para garantir espaço para as setas */
.carousel-container {
    position: relative;
    width: 90%;
    max-width: 1400px;
    margin: auto;
    display: flex;
    align-items: center;
    margin-top: 20px;
}

/* Define um espaço externo para as setas */
.carousel-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 10;
}

/* Personaliza os botões de navegação */
.custom-prev,
.custom-next {
    background-color: rgba(255, 255, 255, 0.2); /* Fundo levemente transparente */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}

.custom-prev:hover,
.custom-next:hover {
    background-color: rgba(255, 255, 255, 0.5); /* Fica mais visível ao passar o mouse */
}

/* Ícones das setas */
.custom-prev::after,
.custom-next::after {
    font-size: 24px;
    color: white;
}

.button {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
}

.button:hover {
    background-color: #0056b3;
}

.btn-primary-used {
    background-color: #15224f;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
}

.button:hover {
    background-color: #0056b3;
}

/* Botão de menu para dispositivos móveis */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2em;
    cursor: pointer;
}

.first-carousel{
    width: 100%;
    padding: 0;
    margin-top: 0;
    overflow: hidden;
}

.first-carousel .carousel-inner {
    height: auto; /* altura automática */
}

.first-carousel .carousel-item{
    height: auto; /* remova o 100vh para altura automática */
    padding: 0;
}

.w-100 {
    width: 80% !important;
    height: auto; /* altura automática para a imagem inteira aparecer */
    object-fit: cover; /* toda a imagem visível, sem cortes */
	margin: auto;
}

.first-carousel .carousel-item {
    transition: transform 0.5s ease-in-out;
}

#floating-wpp {
    width: 60px; /* Largura fixa do botão */
    height: 60px; /* Altura fixa */
    background-color: #25D366;
    border-radius: 50%;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease-in-out;
}

/* Ícone do WhatsApp */
#floating-wpp img {
    width: 40px;
    height: auto;
}

/* Efeito ao passar o mouse */
#floating-wpp:hover {
    transform: scale(1.1);
}

.row {
    display: flex;
    flex-wrap: wrap; /* Garante que, em telas menores, os itens possam quebrar linha */
}

.col-md-6 {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centraliza o conteúdo verticalmente em cada coluna */
    padding: 20px;
}

.row-hist {
    display: flex;
    flex-wrap: wrap; /* Garante que, em telas menores, os itens possam quebrar linha */
    margin-top: 120px;
}

.historia-content {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centraliza verticalmente o texto */
    padding: 20px;
    background-color: #15224f; /* Fundo semi-transparente para legibilidade */
    border-radius: 10px;
    margin-left: 20px;
    max-width: 600px;
}

.historia-title {
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 2rem;
    z-index: 15; /* Traz o título à frente */
    position: relative;
    color: white; /* Garante que o título seja branco */
    opacity: 1; /* Mantém o título opaco */
    text-align: center; /* Alinha o título à esquerda */
}

.historia-text {
    font-weight: 400;
    font-size: 1.1rem;
    z-index: 15; /* Traz o texto à frente */
    position: relative;
    color: white;
    opacity: 1;
    text-align: center; /* Justifica o texto */
}

.historia-images {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 25px;
    padding-top: 20px;
    z-index: 5;
    margin-right: 20px;
}

.historia-images img {
    position: relative;
    z-index: 3; /* Certifica-se de que a imagem fique acima do vídeo */
    opacity: 1; /* Remove qualquer opacidade indesejada */
    display: block;
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.historia-image1 {
    margin-left: 10px;
    margin-right: 50px;
    width: calc(100% - 60px);
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.historia-image2 {
    margin-left: 50px;
    margin-right: 10px;
    width: calc(100% - 60px);
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.carousel-historia .carousel-control-prev-icon,
.carousel-historia .carousel-control-next-icon {
    background-color: transparent; /* Remove qualquer fundo das setas */
    opacity: 0; /* Define a opacidade como 30%, por exemplo */
}

.container-menu{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    margin: 0 0 0 0;
    padding: 200 200 150 200;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('/images/background.png');
    background-position: center;
    background-attachment: fixed;
}

.container-menu h2{
    text-align: center;
    padding: 0 0 90 0;
    color: #fff;
    font-size: 2em;
}

.container-menu .nav-tabs{
    border-bottom: none;
    position: static;
}

.container-menu .mb-4 {
    margin-bottom: 1.5rem !important;
    height: 50px;
}

.container-menu .nav-item {
    width: 50%;
    margin-left: 0!important;
}

.container-menu .nav-link {
    width: 100%;
    height: 75px;
    color: #ffffff;
    font-size: 1.5em;
    align-items: center;
    background-color: #ffffff00;
    text-transform: uppercase;
    border-radius: 10px;
}

.container-menu .nav-link.active {
    color: #fff;
    margin-bottom: 20;
    font-size: 1.5em;
    background-color:#aaaaaa69;
    border-radius: 10px;
}

.container-menu .menu{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.menu .card{
    width: 350px;
    height: 350px;
    margin-bottom:  7em;
    cursor: pointer;
    opacity: 0.8;
}

.menu .card:hover{
    color:#000;
    opacity: 1;
    z-index: 10;
    transform: scale(1.1);
    transition: all 1s ease;
    filter:drop-shadow(2px 2px 10px white);
}

.menu .card-body{
    display: flex;
    flex: 1 1 auto;
    padding: 1rem 1rem;
    flex-direction: column;
}

.menu .card img{
    width: 60%;
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-20%);
    filter:drop-shadow(2px 2px 10px orange);
}

.menu .card-title {
    flex: 1;
    margin-bottom: .5rem;
    text-align: end;
    font-size: 1.5em;
    font-style: italic;
    font-weight: 600;
}

.menu .ingredients {
    display: flex;
    flex-direction: column;
    list-style: none;
    flex: 5;
    font-size: 0.9em;
    color: #555555;
}

.modal-backdrop {
    backdrop-filter: blur(5px);
}

.modal-backdrop.show {
    backdrop-filter: blur(30px); /* Aumenta o desfoque */
    background-color: rgba(0, 0, 0, 0.7); /* Adiciona uma leve opacidade */
    -webkit-backdrop-filter: blur(15px); /* Fallback para navegadores WebKit */
}

.modal.show .modal-dialog {
    transform: none;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    height: 100dvh;
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 80dvh;
    height: 80dvh;
    border: 5px solid rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    padding: 15px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    background-color: rgba(0, 0, 0, 0.8);
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url('/images/background.png');
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    padding: 1rem 1rem;
    border-bottom: none!important;
    border-top-left-radius: calc(.3rem - 1px);
    border-top-right-radius: calc(.3rem - 1px);
}

.modal-title {
    min-height: 2rem; /* Defina um mínimo para garantir espaço, aumente conforme necessário */
    line-height: 1.5; /* Ajusta a altura da linha para um melhor espaçamento */
    font-size: 2rem; /* Tamanho do texto do título */
    text-align: center; /* Centraliza o texto do título */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem; /* Adiciona espaçamento interno */
}

.modal-body p {
    flex: 1;
    color: #000;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.2em;
    align-content: center;
}

.modal-body {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    border-radius: 10px;
}

.modal-body img {
    width: 80%;
    max-width: 600px;
    border-radius: 20px;
    margin-left: 50px;
    margin-right: 50px;
    position: relative; 
}

.modal-header {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url('/images/background.png');
    background-position: center;
    background-attachment: fixed;
    padding: 1rem;
}

.modal-footer {
    padding-top: 0; /* Remove a margem superior fixa */
    padding-bottom: 0; /* Mantém o espaçamento inferior */
    display: flex;
    justify-content: center;
    align-content: center;
    text-align: center;
    line-height: 1.5;
    flex-grow: 1; /* Permite que o conteúdo cresça sem deslocar outros elementos */
    border-top: none;
    margin-bottom: auto;
    margin-top: auto;
}


.footer-ingredients {
    text-align: center;
    align-content: center;
    display: flex;
    font-size: 1.1rem;
    color: white;
    margin-bottom: auto;
    background-color: rgba(0, 0, 0, 0.5); /* Fundo semi-transparente */
    border-radius: 10px; /* Cantos arredondados */
}

.footer-button {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.footer-button button {
    margin-right: 1rem;
}

.modal-header h5 {
    font-size: 2em;
    color: #ffffff;
    text-align: center;
    font-weight: bold;
}

.arrow-left, .arrow-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
}

.arrow-left {
    left: 10px;
}

.arrow-right {
    right: 10px;
}

.arrow-left:hover, .arrow-right:hover {
    background-color: transparent; /* Remove o fundo escuro ao passar o mouse */
    color: #fff; /* Mantém a cor das setas */
    transition: color 0.3s ease; /* Adiciona uma transição suave na cor */
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    padding-left: 20px;
    border: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    z-index: 10;
}

.img-fluid {
    height: 30dvh;
    flex: 3;
    align-self: center;
}

.container-size{
    width: 100%;
    justify-content: space-evenly;
    margin: 100 0 0 0;
    padding: 150 200 200 200;
}

.container-size h1{
    flex:1;
    text-align: center;
    padding-bottom: 80px;
}

.container-size .size{
    flex:3;
    display: flex;
    flex-direction: row;
}

.size .item{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 30 0 0 0;
}

.size .item img{
    max-width: fit-content;
    filter:drop-shadow(2px 2px 20px orange);
}

.size .item img:hover{
    transform: rotate(360deg);
    transition: all 2s ease;
}

.size .item .img-calzone{
    width: 150px;
    height: 150px;
}

.size .item p{
    padding: 30 0 0 0;
    font-size: 1.2em;
}

.size .item h3{
    padding-bottom: 20!important;
}

.container-home{
    background-image: url('/images/background_modal_.png');
    background-color: rgba(0, 0, 0, 0);
    background-blend-mode: overlay;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;

}
.prices{
    width: 100%;
    height: auto;
    min-height: 100dvh;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    background: white;
    align-self: center;
}


.a-la-carte, .rodizio, .delivery{
    flex: 1;
    color: #000;
    background: #d9d9d926;
    width: 25dvh;
    height: 80dvh;
    border-radius: 1em;
    display: flex;
    flex-direction: column;
    margin: 5dvh 5dvh 5dvh 5dvh;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Font Awesome 6 Free';
    padding: 5dvh 0 0 0;
    position: relative;

    & .text-hover-hidden{
        display: none;

        & p{
            margin-top: 8dvh;
            margin-bottom: 0;
        }

    }

}

.a-la-carte:hover, .rodizio:hover, .delivery:hover{
    background-color: #e3a436;
    color: #704c3c;
    transition: all 0.5s ease;

    & .text-hover-hidden{
        display: block;

        & p{
            margin-top: 8dvh;
            margin-bottom: 0;
        }

    }

    & .img-hover-hidden{
        display: none;
    }
}

.a-la-carte img{
    position: relative;
    height: auto;
    width: auto;
    padding: 8dvh;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotateElement 10s linear infinite;
}

.page-wrapper {
    max-width: 1400px;
    margin: auto;
    padding: 60px 20px;
    text-align: center;
}

/* Título Principal */
.main-title {
    font-size: 42px;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 120px;
    margin-bottom: 40px;
    text-align: center;
}

.main-title-details,
.main-title-busca {
    font-size: 42px;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
}

.main-title-busca {
    margin-top: 150px;
}

.content-wrapper {
    display: flex;
    justify-content: space-around;
}

/* Coluna da direita (Banners) */
.banners-column {
    width: 15%; /* Ocupa 30% da largura */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px; /* Espaço entre os banners */
}

/* Estilização dos banners */
.banner img {
    width: 100%; /* Ajusta o banner à largura da coluna */
    max-width: 150px; /* Define um tamanho máximo */
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.machine-grid, 
.category-grid, 
.subcategory-grid {
    display: grid;
    gap: 15px; /* Espaçamento entre os cards */
    justify-content: center;
}

.machine-grid {
    grid-template-columns: repeat(5, 1fr); /* 4 colunas */
}

.category-grid, 
.subcategory-grid {
    grid-template-columns: repeat(4, 1fr); /* 4 colunas */
}

.image-wrapper {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.image-wrapper img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.acessorio-card,
.machine-card,
.machine-card-usd,
.category-card,
.category-card-usd,
.subcategory-card,
.subcategory-card-usd {
    background: #15224f;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 300px;
    width: 100%;
    max-width: 300px;
}

.acessorio-card,
.machine-card,
.machine-card-usd,
.category-card,
.category-card-usd,
.subcategory-card,
.subcategory-card-usd {
    opacity: 0;
    transform: translateY(50px); /* Começa deslocado para baixo */
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.acessorio-card.show,
.machine-card.show,
.machine-card-usd.show,
.category-card.show,
.category-card-usd.show,
.subcategory-card.show,
.subcategory-card-usd.show {
    opacity: 1;
    transform: translateY(0);
}

.machine-card-usd,
.category-card-usd, 
.subcategory-card-usd {
    background: #15224f; /* Fundo azul escuro */
}

.acessorio-card,
.machine-card-usd,
.machine-card {
    display: flex;
    flex-direction: column;
    align-items: center; /* centraliza horizontalmente */
    text-align: center;
    height: 100%; /* Garante que o conteúdo ocupe todo o espaço do card */
    padding: 15px;
    text-decoration: none !important;
    color: inherit !important;
}

.machine-card-usd .machine-info,
.machine-card .machine-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.acessorio-card:hover,
.machine-card:hover,
.machine-card-usd:hover,
.category-card:hover,
.category-card-usd:hover,
.subcategory-card:hover,
.subcategory-card-usd:hover {
    transform: translateY(-5px); /* Eleva o card levemente */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); /* Sombra mais intensa */
}

.acessorio-card img, 
.machine-card img,
.machine-card-usd img,
.category-card img,
.category-card-usd img,
.subcategory-card img,
.subcategory-card-usd img {
    width: 200px;
    height: 200px; /* ou 180px, ajuste conforme visual desejado */
    object-fit: cover;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
    background-color: #fff;
}

.acessorio-card h3,
.machine-card h3,
.machine-card-usd h3,
.category-card h3,
.category-card-usd h3,
.subcategory-card h3,
.subcategory-card-usd h3 {
    margin-top: 15px;
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
}

.acessorio-card:hover, 
.machine-card:hover,
.machine-card-usd:hover,
.category-card:hover,
.category-card-usd:hover,
.subcategory-card:hover,
.subcategory-card-usd:hover {
    transform: scale(1.05);
}

.acessorio-card a,
.acessorio-card a:visited,
.acessorio-card a:hover,
.acessorio-card a:active,
.machine-card a,
.machine-card a:visited,
.machine-card a:hover,
.machine-card a:active,
.machine-card-usd a,
.machine-card-usd a:visited,
.machine-card-usd a:hover,
.machine-card-usd a:active,
.category-card a,
.category-card a:visited,
.category-card a:hover,
.category-card a:active,
.category-card-usd a,
.category-card-usd a:visited,
.category-card-usd a:hover,
.category-card-usd a:active,
.subcategory-card a,
.subcategory-card a:visited,
.subcategory-card a:hover,
.subcategory-card a:active,
.subcategory-card-usd a,
.subcategory-card-usd a:visited,
.subcategory-card-usd a:hover,
.subcategory-card-usd a:active {
    text-decoration: none !important;
    color: inherit !important;
    display: inline-block; /* Evita sublinhado por colapsos de linha */
}

.acessorio-card,
.machine-card,
.machine-card-usd,
.category-card,
.category-card-usd,
.subcategory-card,
.subcategory-card-usd {
    text-decoration: none !important;
    color: inherit !important; /* Mantém a cor original */
}


.breadcrumb-container {
    display: flex;
    justify-content: center;
    margin-top: 100px;
}

.breadcrumb {
    list-style: none;
    display: flex;
    gap: 10px;
    font-size: 14px;
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 0px;

}

.breadcrumb li {
    display: inline;
}

.breadcrumb li a {
    text-decoration: none;
    color: #007bff;
}

.breadcrumb li a:hover {
    text-decoration: underline;
}

.breadcrumb li::after {
    content: " > ";
    margin: 0 5px;
    color: #555;
}

.breadcrumb li:last-child::after {
    content: "";
}

.image-overlay {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: visible; /* <-- libera o clique para os filhos */
}

.machine-carousel-container {
    width: 75%;
    max-width: 680px;
    min-height: 340px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 8px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

.carousel-image-wrapper {
  width: 100%;
  max-height: 450px; /* controla a altura do carrossel */
  overflow: hidden;
  background-color: #fff;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
}

.machine-carousel-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.machine-carousel-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    display: block;
}

/* 🎯 Estilização dos botões do carrossel */
.machine-carousel-btn .carousel-control-prev-icon,
.machine-carousel-btn .carousel-control-next-icon {
    filter: invert(100%); /* Torna os ícones visíveis em fundos escuros */
}

.machine-carousel .carousel-item {
  height: 400px; /* mesma altura do .machine-carousel-container */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Ajusta os botões de controle, se necessário */
.machine-carousel-btn {
    top: 50%;
    transform: translateY(-50%);
    z-index: 10; /* Mantém os botões visíveis sobre as imagens */
}

/* Garante que as imagens sejam exibidas corretamente dentro do item */
.machine-carousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* 🏷️ Estilos do título da máquina */
.machine-title {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
}

/* Estilo da Caixa de Descrição */
.machine-description-container {
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    padding: 20px;
    margin: 0 auto;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 500px;
}

/* Estilo do Cabeçalho da Descrição */
.machine-description-header {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* Estilo do Conteúdo da Descrição */
.machine-description-content {
    padding: 15px;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

.machine-posted-date {
    text-align: right;
    font-style: italic;
    font-size: 14px;
    margin-top: 10px;
}

.machine-description-content p {
    font-size: 1rem;
    line-height: 0.9;
    color: #000000;
}

/* Botão de solicitação de orçamento */
.machine-request-button {
    text-align: center;
}

.zoom-container {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
}

.zoom-container img {
  display: block;
  width: 100%;
  transition: transform 0.2s ease;
}

.zoom-container:hover img {
  transform: scale(2); /* Ajuste o nível de zoom */
}

.fullscreen-modal {
    display: none;
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
}

.fullscreen-modal.show {
    display: flex;
}

.fullscreen-image {
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    display: block;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 35px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    z-index: 1060;
}

.fullscreen-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: transparent;
    color: #fff;
    border: none;
    font-size: 24px;
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
    z-index: 2;
}


.btn-request-quote {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background-color: #007bff;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease-in-out;
    cursor: pointer !important; /* Garante que o mouse muda */
    pointer-events: auto !important; /* Permite o clique */
    z-index: 9999 !important; /* Evita sobreposição */
    position: relative; /* Evita que um elemento invisível esteja sobre ele */
    outline: none; /* Remove a borda preta ao clicar */
    border: none; /* Remove qualquer borda */
}

.btn-request-quote:hover {
    background-color: #0056b3;
}

.btn-request-quote:focus {
    outline: none !important; /* Remove o contorno ao focar */
    border: none !important;
}

.orcamento-wrapper {
    margin-top: 120px; /* Mantém a distância do header */
}

/* Estilização do formulário de orçamento */
.orcamento-title {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
}

/* Container do formulário */
.orcamento-container {
    max-width: 900px; /* Reduz a largura para evitar que fique muito grande */
    margin: 0 auto;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    background-color: #001F5B; 
    color: #ffffff;
}

.orcamento-container .col-md-6 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start !important; /* Alinha ao topo */
    padding: 0 15px; /* Ajuste para espaçamento interno */
}

/* Estilos do título */
.orcamento-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

/* Campos do formulário */
.orcamento-detalhes label,
.orcamento-campos label {
    font-weight: bold;
    margin-top: 10px;
    display: block;
}

.orcamento-detalhes input,
.orcamento-campos input,
.orcamento-campos textarea {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Botão de envio do orçamento */
.btn-enviar-orcamento {
    background-color: #28a745; /* Verde */
    color: white;
    padding: 12px 20px;
    border: none;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px; /* Bordas arredondadas */
    cursor: pointer;
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
    margin-top: 20px; /* Margem superior */
    display: inline-block;
    text-align: center;
}

/* Efeito de hover para destacar o botão */
.btn-enviar-orcamento:hover {
    background-color: #218838; /* Verde mais escuro */
    transform: scale(1.05); /* Leve aumento ao passar o mouse */
}

/* Ajuste para centralizar o botão */
.text-center {
    text-align: center;
}

/* Ajuste para alinhar o botão à direita */
.text-right {
    text-align: right;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #c3e6cb;
    margin-bottom: 15px;
    text-align: center;
    font-weight: bold;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.container-contact {
    padding-top: 20px; /* Pequeno padding no topo para separar do header */
    margin-top: 120px; /* Remove margem no topo */
    max-width: 1200px;
    border-radius: 10px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Sombra sutil */
}

.container-contact h3 {
    color: #ffffff;
}

.representantes-title {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin-top: 120px;
}

.representantes-title h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    color: #000;
}

.representantes-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    margin-top: 40px;
}

/* Mapa */
.map-container {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    padding: 0 15px; /* Espaço lateral para não colar nas bordas */
}

.mapa-brasil {
    width: 100%;
    height: auto;
}

/* Card da Lista de Representantes */
.card-representantes {
    width: 40%;
    max-width: 400px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    padding: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 600px;
}

/* Mensagem Inicial */
#mensagem-selecao h3 {
    font-size: 14px;
    color: #555;
    font-weight: bold;
}

#representantes-list h3 {
    font-size: 18px;
    color: #555;
    font-weight: bold;
    margin-bottom: 20px;
}

#representantes-list {
    list-style-type: none;
    padding: 0;
}

#representantes-list li {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

#representantes {
    list-style-type: none;
    padding: 0;
}

#representantes li {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

/* Esconde a lista antes da seleção */
#representantes-list.hidden,
#mensagem-selecao.hidden {
    display: none;
}

.representantes-wrapper {
    display: flex;
    flex-direction: column;
    align-items: stretch; /* Permite que o card ocupe a largura máxima */
    gap: 20px; /* Espaçamento entre card e botão */
}

.btn-representante {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    width: 100%; /* 🔹 Faz o botão expandir horizontalmente */
    max-width: 300px; /* 🔹 Limita o botão para não ficar muito largo */
    text-align: center;
}

.btn-representante:hover {
    background-color: #0056b3;
}

#card-representantes {
    width: 100%; /* Ocupa toda a largura disponível */
    min-height: 400px; /* Altura mínima para que não fique pequeno */
    padding: 20px;
    box-sizing: border-box; /* Garante que padding não ultrapasse a largura */
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#btn-container {
    width: 100%;
    text-align: center;
}

.acessorios-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    justify-content: center;
}

.acessorio-link {
    text-decoration: none !important; /* Remove o sublinhado */
    color: inherit !important; /* Mantém a cor original do texto */
}

.acessorios-title {
    font-size: 42px;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 20px;
    margin-bottom: 40px;
    text-align: center;
}

.container-accessory {
    position: relative;
    width: 100%;
    padding: 20px;
    z-index: 1;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.container-accessory::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.container-accessory .col-md-6 {
    display: flex;
    flex-direction: column;
    justify-content: start; /* Centraliza verticalmente o conteúdo dentro da coluna */
}

/* 🎨 Estilos do carrossel exclusivo da página de detalhes da máquina */
.accessory-carousel-container {
    width: 500px;
    height: 300px;
    overflow: hidden;
    margin: auto;
}

.accessory-carousel-image {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transform: translate(0%, 0%);
    align-items: center;
}

/* 🎯 Estilização dos botões do carrossel */
.accessory-carousel-btn .carousel-control-prev-icon,
.accessory-carousel-btn .carousel-control-next-icon {
    filter: invert(100%); /* Torna os ícones visíveis em fundos escuros */
}

.accessory-carousel .carousel-item {
    height: 400px; /* Mesma altura do carrossel */
    position: relative; /* Para que as imagens posicionadas absolutamente fiquem dentro */
}

/* Ajusta os botões de controle, se necessário */
.accessory-carousel-btn {
    top: 50%;
    transform: translateY(-50%);
    z-index: 10; /* Mantém os botões visíveis sobre as imagens */
}

/* Garante que as imagens sejam exibidas corretamente dentro do item */
.accessory-carousel .carousel-item img {
    display: block;
}

/* 🏷️ Estilos do título da máquina */
.accessory-title {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
}

/* Estilo da Caixa de Descrição */
.accessory-description-container {
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    padding: 20px;
    margin: 0 auto;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 500px;
}

/* Estilo do Cabeçalho da Descrição */
.accessory-description-header {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* Estilo do Conteúdo da Descrição */
.accessory-description-content {
    padding: 15px;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

.accessory-description-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #000000;
}

/* Botão de solicitação de orçamento */
.accessory-request-button {
    text-align: center;
}

.anuncie-container {
    max-width: 900px;
    margin: auto;
    text-align: center;
    padding: 40px 20px;
}

.anuncie-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    margin-top: 150px;
}

.anuncie-cards-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.anuncie-card {
    background-color: #15224f;
    color: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 400px;
    min-width: 300px;
}

.anuncie-card-footer {
    margin-top: auto;
}

.anuncie-card h2 {
    margin-bottom: 10px;
    font-weight: bold;
}

.anuncie-price {
    font-size: 20px;
    font-weight: bold;
    margin-top: 10px;
}

.anuncie-btn-whatsapp {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background-color: #25d366;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease-in-out;
}

.anuncie-btn-whatsapp:hover {
    background-color: #1da851;
}

.anuncie-card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    cursor: pointer;
}

.anuncie-card:hover {
    transform: scale(1.1); /* Aumenta o card */
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2); /* Adiciona um leve sombreado */
    z-index: 10;
}

.content-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.btn-container {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.machine-price {
    background-color: #f8f9fa; /* Cor de fundo leve */
    border: 2px solid #009CFF; /* Borda verde para destacar */
    border-radius: 8px;
    padding: 10px 15px;
    margin-top: 20px;
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
    min-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.machine-price .price-value {
    color: #15224f; /* Cor verde destacada */
}

/* Preço antigo (riscado e menor) */
.machine-price .preco-antigo {
    color: #888;
    font-size: 1rem;
    text-decoration: line-through;
    margin-bottom: 5px;
}

/* Preço promocional (maior e destacado) */
.machine-price .preco-promocional {
    color: #15224f; /* Vermelho destacando o promocional */
    font-size: 1.8rem;
}

.vendido-badge {
    position: absolute;
    top: 10px;
    right: 10px; /* Troquei para o lado esquerdo como você tinha no início */
    background-color: #FF0000;
    color: #FFFFFF;
    padding: 5px 10px;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.8rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 20;
}

.carousel-selo-vendido {
    top: 10px;
    right: 10px;
    background-color: #FF0000; /* Cor amarela */
    color: #FFFFFF; /* Texto preto para melhor contraste */
    font-weight: bold;
    padding: 5px 10px;
    font-size: 20px;
    z-index: 10;
    border-radius: 5px;
}

.machine-container {
    position: relative; /* Permite posicionar a bolinha dentro da imagem */
    display: inline-block; /* Mantém o tamanho apenas da imagem */
}

/* 🔍 Container da busca rápida */
.centraliza-busca {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    margin-top: 0;
    margin-bottom: 0;
}

/* Envolve título + form */
.busca-rapida-wrapper {
    background-color: #15224f;
    border-radius: 12px;
    padding: 30px;
    max-width: 1200px;
    margin-top: 15px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Título */
.busca-rapida-wrapper .busca-rapida-titulo {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

/* Linha que agrupa os campos */
.busca-linha {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* Cada campo */
.campo {
    display: flex;
    flex-direction: column;
}

/* Campo de código menor */
.campo-codigo {
    min-width: 120px;
}

/* Botão de busca alinhado ao final */
.campo-botao {
    align-self: flex-end;
}

/* Labels */
.busca-rapida-form label {
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 15px;
    color: #ffffff;
}

/* Inputs e selects */
.busca-rapida-form input[type="text"] {
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    background-color: #fff;
    transition: border-color 0.3s ease;
    width: 150px;
}

.busca-rapida-form select {
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    background-color: #fff;
    transition: border-color 0.3s ease;
    width: 150px;

    /* 🔧 Padronização cross-browser */
    appearance: none;
    -webkit-appearance: none; /* Safari */
    -moz-appearance: none;    /* Firefox */

    /* ⬇️ Seta personalizada */
    background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
    padding-right: 36px; /* espaço para a seta */
}

/* Focus */
.busca-rapida-form input[type="text"]:focus,
.busca-rapida-form select:focus {
    border-color: #007bff;
    outline: none;
}

/* Botão */
.busca-rapida-form button[type="submit"] {
    padding: 12px 30px;
    background-color: #007bff;
    border: none;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.busca-rapida-form button[type="submit"]:hover {
    background-color: #0056b3;
}

.etec-wrapper {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.etec-titulo-central {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
}

.etec-conteudo {
    display: flex;
    gap: 20px;
}

.layout-container {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Coluna esquerda */
.etec-filtros-laterais {
    flex: 1;
    max-width: 200px;
    background-color: #f4f4f4;
    padding: 15px;
    border-radius: 8px;
}

.etec-filtros-titulo {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.etec-filtros-lista {
    list-style: none;
    padding: 0;
    margin: 0;
}

.etec-filtros-lista li {
    border-bottom: 1px solid #dcdcdc;
    padding: 8px 0;
}

.etec-filtros-lista li:last-child {
    border-bottom: none;
}

.etec-filtro-link {
    display: block;
    color: #007BFF;
    text-decoration: none;
    padding: 4px 8px;
    transition: background-color 0.2s;
}

.etec-filtro-link:hover {
    background-color: #e2e6ea;
    border-radius: 5px;
}

/* Cards ao centro */
.etec-cards-categorias {
    flex: 2;
}

.etec-grade-categorias {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.etec-card-link {
    text-decoration: none;
    color: inherit;
}

.etec-card-categoria {
    background: #1b274d;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.etec-card-categoria:hover {
    transform: scale(1.03);
}

.etec-card-categoria img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
}

.etec-card-categoria h3 {
    margin-top: 10px;
    color: white;
}

/* Coluna direita (banners) */
.etec-banners {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.etec-banner-link img {
    max-width: 100%;
    border-radius: 10px;
}

@keyframes rotateElement {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.rodizio img{
    position: relative;
    height: auto;
    width: auto;
    padding: 8dvh;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.delivery {

    & .motoboy-img {
        width: auto;
        height: auto;
        position: relative;
        top: 50%;
        left: 50%;
        animation: moto 2s linear infinite;
    }

    & .text-delivery {
        display: none;
        padding: 1dvh;

        & h5 {
            font-size: 0.8rem!important;
        }

        & h2 {
            font-size: 1em!important;
        }
    }
}

.delivery:hover{

    & .text-delivery {
        display: block;
        padding: 1dvh;

        & h5 {
            font-size: 0.8rem!important;
        }

        & h2 {
            font-size: 1em!important;
        }

    }

    & .motoboy-img{
        display: none;
    }
}

@keyframes moto{
    0% { transform: translate(-50%,-50%) }
    20% { transform: translate(-50%, -51%) }
    40% { transform: translate(-50%, -50%) }
    60% { transform: translate(-50%, -51%) }
    100% { transform: translate(-50%,-50%) }
}

.container-home .container-size{
    background: rgb(45 25 16 / 90%);
    color: white;
    margin: 0;
}

.container-home .home-h1{
    height: 50vh;
    text-align: center;
    background: white;
    /* margin: 0 20dvh 0 20dvh; */
}

.home-h1 h1{
    color: #000;
    font-weight: 600;
    padding: 0 15dvh 0 15dvh;
    text-transform: uppercase;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.mob-section{
    width: 100%;
    height: 100dvh;
    padding: 4dvh;
    background: white;
    display: flex;
    justify-content: center;
    flex-direction: row;
}

.mob-section img{
    height: fit-content;
    width: 80dvh;
    animation: movePhone 3s linear infinite;
    transition: all ease;
}

@keyframes movePhone{
    0%{
        transform: rotate(15deg);
    }

    50%{
        transform: rotate(-15deg);
    }

    100%{
        transform: rotate(15deg);
    }
}

.mob-section .ifood{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    flex: 1;
    background: url(/images/ifood.svg);
    background-repeat: no-repeat;
    background-size: inherit;
    background-position: center;
    margin: 0 10dvh 0 10dvh;
}


.mob-div, .mob-btn{
    flex: 1;
}

.mob-section .ifood button{
    color: #000;
    width: 50dvh;
    height: 10dvh;
    font-size: 1.5em;
    font-weight: 600;
    border: none;
    background: #ffc700;
    position: relative;
    animation: zoominbtn 3s linear infinite;
    transition: all ease;
}

.machine-code {
    font-size: 0.85rem;
    color: #ffffff;
    margin-top: 4px;
    opacity: 0.85;
}

.machine-code-sh {
    font-size: 1rem;
    color: #444;
    margin-top: -10px;
    margin-bottom: 0px;
    opacity: 0.9;
}

@keyframes zoominbtn{
    0%{
        transform: scale(1);
    }

    50%{
        transform: scale(1.2);
    }

    100%{
        transform: scale(1);
    }
}

.mob-section .ifood a{
    color: #080808;
    text-decoration: none;
}

@media screen and (min-width: 1400px){
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        min-width: 100%;
        padding: 0 150 0 150;
    }

    .footer-container{
        padding: 0 150 0 150;
    }
    
    .social-md img {
        width: 60px;
    }
    

}

@media screen and (min-width: 1200px ) and (max-width: 1399px){
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        min-width: 100%;
        padding: 20px;
    }
    
    .social-md img {
        width: 60px;
    }
    
    .w-100 {
        margin-top: 10px;
    }
    
    .logo-container {
        margin-left: 100px;
    }
    
    .contact-header {
        margin-right: 100px;
    }

    .floating-box {
        width: 70px;
        height: 70px;
    }

    .floating-box:hover{
        width: 200px;
    }
    
    .container-menu{
        padding: 50 0 0 0;
    }

    .container-menu .menu{
        justify-content: space-around;
    }

    .container-size{
        padding: 100 0 100 0;
        justify-content: space-between;
    }

    #nbar {
        padding: 0;
    }

    #nbar.shrink {
        padding: 0!important;
    }

    .mob-section .ifood {
        width: 100dvh;
        flex-direction: column;
    }

    .prices{
        min-height: 50dvh;

        & .a-la-carte, .rodizio, .delivery{
            height: 50dvh;
        }

    }

}

@media (max-width: 1199px) {
    
    .representantes-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .map-container {
        width: 110%;
        max-width: 600px;
        display: flex;
        justify-content: center;
    }

    .mapa-brasil {
        width: 110%;
        height: auto;
    }

    .representantes-wrapper {
        max-width: 600px;
    }

    #card-representantes {
        width: 100%;
    }

    .btn-container {
        text-align: center;
    }
    
}

@media screen and (min-width: 992px) and (max-width: 1199px){
    .container, .container-lg, .container-md, .container-sm {
        min-width: 100%;
        padding: 20px;
    }
    
    .w-100 {
        margin-top: 10px;
    }
    
    .social-md .icons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .logo-container {
        margin-left: 80px;
    }

    
    .contact-header {
        margin-right: 80px;
    }


    .floating-box {
        width: 60;
        height: 60;
    }

    .floating-box:hover{
        width: 150;
    }

    .floating-box a{
        font-size: 0.9em;
    }

    .row {
        display: flex;
        flex-direction: column; /* Altera para coluna em resoluções menores */
        align-items: center; /* Centraliza os itens na coluna */
    }

    .col-md-6 {
        width: 100% !important; /* Garante que o col-md-6 ocupe 100% da largura em resoluções menores */
        flex: 0 0 auto; /* Corrige o comportamento flexbox */
    }

    .historia-content {
        display: flex;
        justify-content: center; /* Centraliza horizontalmente */
        align-items: center; /* Centraliza verticalmente */
        flex-direction: column;
        text-align: center;
        margin: 0 auto; /* Centraliza o container */
        padding-left: 10%; /* Ajuste para equilibrar o padding */
        padding-right: 10%; /* Ajuste para equilibrar o padding */
        max-width: 90%; /* Limita a largura máxima do texto */
        z-index: 2;
    }

    .historia-images {
        width: 100%; /* Para resoluções médias, garante que o carrossel ocupe toda a largura */
        margin-top: 20px;
        z-index: 2;
    }

    .historia-images img {
        opacity: 1 !important; /* Garante 100% de opacidade */
        filter: none !important; /* Remove filtros, como desfoque ou outros efeitos */
        z-index: 2;
    }

    .carousel-historia .carousel-item {
        position: relative;
        z-index: 2; /* Garante que o carrossel fique à frente do vídeo */
    }

    .carousel-historia .carousel-item img {
        opacity: 1 !important; /* Força a opacidade das imagens para 100% */
        filter: none !important; /* Remove qualquer filtro */
        z-index: 2; /* Traz as imagens para frente */
    }

    .historia-image1, .historia-image2 {
        margin-left: 10px;
        margin-right: 10px;
        width: calc(100% - 60px);
        max-height: 400px;
        object-fit: cover;
        border-radius: 10px;
        z-index: 5;
        opacity: 1 !important; /* Garante 100% de opacidade */
        filter: none !important; /* Remove filtros, como desfoque ou outros efeitos */
    }

    .carousel-historia .carousel-item::before,
    .carousel-historia .carousel-item::after {
        display: none !important;
        opacity: 0 !important; /* Remove qualquer opacidade dessas camadas */
    }

    .historia-text {
        font-size: 1.4rem;
    }

    .historia-title {
        font-size: 2rem;
    }

    .container-menu{
        padding: 100 0 0 0;
    }

    .container-menu .menu{
        justify-content: space-around;
    }

    .container-size{
        padding: 100 0 100 0;
    }

    .carousel-inner img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    #nbar {
        padding: 0;
    }

    #nbar.shrink {
        padding: 0!important;
    }

    .nbar-div li {
        padding: 0 2vh 0 2vh;
    }

    .mob-section .ifood {
        width: 100dvh;
        flex-direction: column;
    }

    .prices{
        min-height: 50dvh;

        & .a-la-carte, .rodizio, .delivery{
            height: 50dvh;
        }

        & .a-la-carte img, .rodizio img{
            padding: 4dvh;
        }

    }

}


@media screen and (min-width: 768px) and (max-width: 991px){
    .container, .container-md, .container-sm {
        min-width: 100%;
        padding: 0 0 10 0;
    }
    
    .w-100 {
        margin-top: 10px;
    }

    .footer-container{
        padding: 0 0 10 0;
    }
    
    .logo-container {
        margin-left: 0px;
    }
    
    .contact-header {
        margin-right: 0px;
        gap: 10px;
    }
    
    .menu a {
        font-size: 0.8rem;
    }

    .floating-box {
        width: 60px;
        height: 60px;
    }

    .floating-box:hover{
        width: 150px;
    }

    .floating-box a{
        font-size: 0.9em;
    }

    .carousel-control-prev,
    .carousel-control-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1020;
        width: 50px;
        height: 50px;
        opacity: 1;
    }

    .row {
        display: flex;
        flex-direction: column; /* Mantém o layout em coluna com texto em cima e imagens abaixo */
        width: 100%; /* O row ocupará 100% da largura */
    }

    .historia-content {
        display: flex;
        justify-content: center; /* Centraliza horizontalmente */
        align-items: center; /* Centraliza verticalmente */
        flex-direction: column;
        text-align: center;
        margin: 0 auto; /* Centraliza o container */
        padding-left: 10%; /* Ajuste para equilibrar o padding */
        padding-right: 10%; /* Ajuste para equilibrar o padding */
        max-width: 90%; /* Limita a largura máxima do texto */
        z-index: 2;
    }

    .historia-images {
        display: flex;
        justify-content: space-between; /* Garante que as imagens fiquem lado a lado */
        flex-wrap: nowrap; /* Permite que as imagens quebrem linha se necessário */
        flex-direction: row !important;
        width: 100%;
    }

    .historia-image1, .historia-image2 {
        width: 100%; /* Cada imagem ocupa 48% da largura do container */
        max-height: 250px; /* Limita a altura das imagens */
        object-fit: cover; /* Garante que as imagens mantenham a proporção */
        border-radius: 10px;
        margin: 10px;
    }

    .carousel-historia .carousel-item {
        position: relative;
        z-index: 2; /* Garante que o carrossel fique à frente do vídeo */
        overflow: hidden; /* Garante que não haja overflow nos lados */
    }

    .carousel-historia .carousel-item img {
        opacity: 1 !important; /* Força a opacidade das imagens para 100% */
        filter: none !important; /* Remove qualquer filtro */
        z-index: 2; /* Traz as imagens para frente */
    }

    .carousel-historia .carousel-inner img {
        width: 100%;
        height: auto; /* Garante que a altura se ajuste automaticamente */
        object-fit: contain; /* Faz com que a imagem seja completamente visível dentro do container */
        max-height: 500px; /* Ajuste a altura máxima conforme necessário */
    }

    .historia-text {
        font-size: 1.2rem;
    }

    .historia-title {
        font-size: 1.8rem;
    }

    .modal-content {
        width: 80vw;
        height: auto;
        padding: 1rem;
    }

    .modal-body img {
        width: 80%;
        height: auto;
    }

    .modal-title {
        font-size: 1.4rem;
    }
    
    .footer-ingredients {
        font-size: 1rem;
    }

    .modal-footer {
        flex-direction: column;
        padding: 1rem;
    }

    .col-md-6 {
        width: 100% !important; /* Garante que o col-md-6 ocupe 100% da largura em resoluções menores */
        flex: 0 0 auto; /* Corrige o comportamento flexbox */
    }

    .col-md-6.text-column {
        display: flex;
        flex-direction: column;
        justify-content: center; /* Centraliza o conteúdo verticalmente na coluna de texto */
        margin-left: 30px; /* Adiciona espaço entre as fotos e o texto */
        padding: 20px;
    }

    .container-menu{
        padding: 100 0 0 0;
    }
    .container-menu .menu{
        justify-content: space-around;
    }

    .container-size{
        padding: 100 0 100 0;
    }

    .container-size .size{
        flex-direction: column;
    }
    #nbar {
        padding: 0;
    }

    #nbar.shrink {
        padding: 0!important;
    }

    .nbar-div li {
        padding: 0 2vh 0 2vh;
    }

    .mob-section .ifood {
        width: 100dvh;
        flex-direction: column;
    }

    .w-100 {
        width: 100%!;
    }

    .nbar-div a {
        font-size: 1em;
    }

    .prices{
        flex-direction: column;
        min-height: 80dvh;

        & .a-la-carte, .rodizio, .delivery{
            height: 80dvh;
            width: 100dvh;
            background: #d9d9d973;
        }

        & .img-hover-hidden, .motoboy-img{
            display: none;
        }

        & .text-delivery, .text-hover-hidden{
            display: block;

            & h5 {
                font-size: 1rem!important;
            }

            & h2 {
                font-size: 2rem!important;
            }
        }

    }

}

@media (min-width: 769px) {
    .hamburger {
        display: none !important;
    }
}

@media (max-width: 768px) {
    /* Esconde elementos que não devem aparecer no mobile */
    .contact-header {
        display: none;
    }
    
    .w-100 {
        margin-top: 10px;
    }


    .header-bottom {
        display: none !important;
    }

    .hidden {
        display: none !important;
    }

    .mobile-nav {
        display: block;
    }
    
    .busca-rapida-wrapper{
        margin-bottom: 0px;
        margin-top: 0px;
    }

    /* Botão hamburguer */
    .hamburger {
        background: none;
        border: none;
        font-size: 32px;
        cursor: pointer;
        display: block;
    }

    /* Estilo do menu mobile geral */
    #mobile-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        background: white;
        z-index: 9999;
        overflow-y: auto;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    /* Estilo das listas */
    #mobile-menu ul {
        list-style: none;
        padding: 0 20px;
        margin: 0;
    }

    #mobile-menu li {
        border-bottom: 1px solid #ddd;
    }

    /* Links e botões do menu */
    #mobile-menu a,
    #mobile-menu .accordion-toggle {
        display: block;
        padding: 12px 16px;
        text-align: left;
        font-size: 16px;
        text-decoration: none;
        color: #000;
        background: none;
        border: none;
        cursor: pointer;
    }

    /* Submenus (categorias e subcategorias) */
    #mobile-menu .submenu {
        padding-left: 16px;
    }

    /* Setinha indicadora do dropdown */
    .accordion-toggle::after {
        content: "▼";
        float: right;
        transition: transform 0.3s;
    }
    
    .accordion-toggle.open::after {
        transform: rotate(180deg);
    }
    
    .menu-toggle-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
    }
    
    .menu-toggle-wrapper a {
        flex: 1;
        color: #000;
        text-decoration: none;
    }
    
    .menu-toggle-wrapper button.accordion-toggle {
        background: none;
        border: none;
        font-size: 18px;
        cursor: pointer;
        padding: 0 10px;
    }
    
}


@media screen and (min-width: 576px) and (max-width: 767px){
    .container, .container-sm {
        min-width: 100%;
    }
    
    .spacer {
        height: 100px;
    }
    
    .spacer-home {
        height: 50px;
    }
    
    .w-100 {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .footer-container{
        padding: 30 30 30 30;
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }
    
    .logo-container {
        margin-left: 10px;
    }
    
    .contact-header {
        margin-right: 10px;
    }
    

    .reserves{
        text-align: center;
    }

    .contacts {
        width: 100%;
        display: flex;
        text-align: center;
        align-items: center;
        padding: 30 30 30 30;
        flex-direction: column;
        justify-content: space-between;
    }

    .social-md{
        display: flex;
        padding: 30 0 30 0;
        justify-content: space-between;
    }

    .row {
        display: flex;
        flex-direction: column-reverse; /* Mantém o layout em coluna com texto em cima e imagens abaixo */
        width: 100%; /* O row ocupará 100% da largura */
    }

    .historia-content {
        order: 1;
        display: flex;
        justify-content: center; /* Centraliza horizontalmente */
        align-items: center; /* Centraliza verticalmente */
        flex-direction: column;
        text-align: center;
        margin: 0 auto; /* Centraliza o container */
        padding-left: 10%; /* Ajuste para equilibrar o padding */
        padding-right: 10%; /* Ajuste para equilibrar o padding */
        max-width: 90%; /* Limita a largura máxima do texto */
        z-index: 2;
    }

    .historia-images {
        order: 2;
        display: flex;
        justify-content: space-between; /* Garante que as imagens fiquem lado a lado */
        flex-wrap: nowrap; /* Permite que as imagens quebrem linha se necessário */
        flex-direction: row !important;
        width: 100%;
    }

    .historia-image1, .historia-image2 {
        width: 100%; /* Cada imagem ocupa 48% da largura do container */
        max-height: 250px; /* Limita a altura das imagens */
        object-fit: cover; /* Garante que as imagens mantenham a proporção */
        border-radius: 10px;
        margin: 10px;
    }

    .carousel-historia .carousel-item {
        position: relative;
        z-index: 2; /* Garante que o carrossel fique à frente do vídeo */
        overflow: hidden; /* Garante que não haja overflow nos lados */
    }

    .carousel-historia .carousel-item img {
        opacity: 1 !important; /* Força a opacidade das imagens para 100% */
        filter: none !important; /* Remove qualquer filtro */
        z-index: 2; /* Traz as imagens para frente */
    }

    .carousel-historia .carousel-inner img {
        width: 100%;
        height: auto; /* Garante que a altura se ajuste automaticamente */
        object-fit: contain; /* Faz com que a imagem seja completamente visível dentro do container */
        max-height: 500px; /* Ajuste a altura máxima conforme necessário */
    }

    .historia-text {
        font-size: 1rem;
    }

    .historia-title {
        font-size: 1.6rem;
    }

    .floating-box {
        width: 60;
        height: 60;
    }

    .floating-box:hover{
        width: 60;
    }

    .modal-content {
        width: 90vw;
        height: auto;
        padding: 0.5rem;
    }

    .modal-body img {
        width: 80%;
        height: auto;
    }

    .modal-footer {
        flex-direction: column;
        padding: 0.5rem;
    }

    .modal-title {
        font-size: 1.2rem;
    }
    
    .footer-ingredients {
        font-size: 0.9rem;
    }

    .first-carousel{
        height: auto;

        & .carousel-item{
            height: auto;
        }
    }

    .carousel-historia .carousel-control-prev,
    .carousel-historia .carousel-control-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1020;
        width: 50px;
        height: 50px;
        opacity: 1;
    }

    .container-menu{
        padding: 100 0 0 0;
    }

    .container-menu .menu{
        justify-content: space-around;
    }

    .container-size{
        padding: 100 0 0 0;
    }

    .container-size .size{
        flex-direction: column;
    }

    #nbar {
        padding: 0;
    }

    #nbar.shrink {
        padding: 0!important;
        height: 10dvh !important;
    }

    #nbar .menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #fff;
        position: absolute;
        top: 10vh;
        left: 0;
        padding: 10px 0;
    }

    .menu-toggle {
        display: block;
        position: absolute;
        right: 0;
        font-size: 3em;
        color: gray;
    }

    #nbar .menu.open {
        display: flex;
    }

    #nbar.shrink li{
        padding: 0 1vh 0 1vh;
    }

    .nbar-div li {
        padding: 0 2vh 3dvh 2vh;
    }

    .mob-section .ifood {
        width: 100dvh;
        flex-direction: column;
    }

    .container-home .home-h1 {
        height: 30vh;
    }

    .prices{
        flex-direction: column;
        min-height: 80dvh;

        & .a-la-carte, .rodizio, .delivery{
            height: 80dvh;
            width: 100dvh;
            background: #d9d9d973;
        }

        & .img-hover-hidden, .motoboy-img{
            display: none;
        }

        & .text-delivery, .text-hover-hidden{
            display: block;

            & h5 {
                font-size: 0.8rem!important;
            }

            & h2 {
                font-size: 1.5rem!important;
            }
        }

    }

}

@media screen and (min-width: 320px) and (max-width: 575px){
    .container, .container-sm {
        min-width: 100%;
    }
    
    .page-wrapper {
        max-width: 1400px;
        margin: 0 auto;
        padding: 60px 20px;
        display: flex;
        text-align: center;
        flex-direction: column;
    }

    .carousel-column {
        order: 2;
    }

    .description-column {
        order: 1;
    }
    
    .w-100 {
        margin-top: 10px;
        margin-bottom: 10px;
    }
    
    .spacer {
        height: 20px;
    }
    
    .spacer-div-home {
        height: 100px;
    }
    
    .spacer-home {
        height: 20px;
    }
    
    .representantes-title {
        margin-top: 60px;
    }
    
    .map-container {
        width: 100%;
        padding: 0 10px;
    }

    .footer-container{
        padding: 30 30 30 30;
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }
    
    .logo-container {
        margin-left: 10px;
    }
    
    .contact-header {
        margin-right: 10px;
    }

    .reserves{
        text-align: center;
    }
    
    .busca-rapida-wrapper {
        padding: 20px;
        margin-left: 10px;
        margin-right: 10px;
    }
    
    #main-carousel {
        height: 200px !important;
        margin-top: 20px !important;
    }

    .busca-rapida-form input[type="text"], .busca-rapida-form select {
        width: 100px;
    }
    
    .carousel-background,
    .carousel-background-used {
        margin-left: 10px;
        margin-right: 10px;
        border-radius: 10px;
    }
    
    .row-hist {
        margin-top: 60px;
    }
    
    .img-fluid {
        width: 30dvh;
    }
    
    .mySwiperBanners .swiper-slide {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .mySwiperBanners .swiper-slide img {
        max-width: 100%;
        max-height: 100%;
        object-fit: cover; /* ou 'cover', se preferir preencher */
    }
    
    .banner-slide {
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: 100px; /* Ajuste conforme necessário */
    }
    
    .swiper-button-next, .swiper-button-prev {
        font-size: small !important;
    }
    
    .main-title {
        margin-top: 60px;
        margin-bottom: 0px;
    }
    
    .etec-conteudo {
        margin-top: 20px;
        gap:30px;
    }
    
    .etec-filtros-laterais {
        display: none !important;
    }
    
    #main-carousel, .carousel-inner {
        height: 350px; /* ajuste conforme seu layout */
    }

    .fullscreen-image {
        max-width: 60%;
        max-height: 60%;
    }
    
    .fullscreen-modal img {
        max-width: 80vw;
        max-height: 80vh;
        object-fit: contain;
        margin-left: 50px;
    }
    
    .contacts {
        width: 100%;
        display: flex;
        text-align: center;
        align-items: center;
        padding: 30 30 30 30;
        flex-direction: column;
        justify-content: space-between;
    }

    .social-md{
        display: flex;
        padding: 30 0 30 0;
        justify-content: space-between;
    }

    .navbar-brand {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 0 10px;
    }

    .navbar-collapse {
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        background-color: #f8f9fa;
        z-index: 1030;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
        padding-top: 10px;
        height: auto;
        max-height: 300; 
        overflow-y: hidden;
        text-align: center;
        transition: all 0.5s; 
        font-size: 12px;
    }
    
    
    .orcamento-wrapper {
        margin-top: 60px;
    }
    
    .acessorios-card,
    .category-card,
    .category-card-usd {
        max-width: 150px; /* ou até menos se preferir */
        height: 200px;
        padding: 10px;
        box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.2);
      }
    
    .acessorios-card p,
    .category-card p,
    .category-card-usd p {
        font-size: 14px;
        text-align: center;
      }
    
    .acessorios-card img, 
    .category-card img,
    .category-card-usd img {
      width: 100%;
      height: 180px; /* mesma altura para todas */
      object-fit: contain; /* mantém proporção */
      display: block;
      margin: 0 auto;
    }
    
    .category-grid, 
    .subcategory-grid, 
    .machine-grid,
    .acessorios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .anuncie-title {
        margin-top: 80px;
    }
    
    .category-card h3, .category-card-usd h3 {
        font-size: 16px;
    }
    
    .anuncie-cards-wrapper {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap; /* Isso já ajuda no comportamento responsivo */
    }
    
    .breadcrumb-container {
        margin-top: 30px;
        justify-content: center; /* Centraliza os itens */
    }
    
    .breadcrumb {
        justify-content: center; /* Centraliza os itens */
    }
    
    .machine-title {
        margin-top: 20px;
    }

    .busca-rapida-form button[type="submit"] {
        width: 100px;
        font-size: 12px;
    }
    
    .busca-rapida-form select,
    .busca-rapida-form input[type="text"] {
        font-size: 12px;
    }

    .row {
        display: flex;
        flex-direction: column-reverse; 
        width: 105%;
    }
    
    .container-contact {
        margin-top: 60px;
    }
    
    .form-floating>.form-control {
        padding: 2rem;
    }

    .historia-content {
        order: 1;
        display: flex;
        justify-content: center; 
        align-items: center;
        flex-direction: column;
        text-align: center;
        margin: 0 auto; 
        padding-left: 10%; 
        padding-right: 10%; 
        max-width: 90%; 
        z-index: 2;
    }
    
    .accessory-description-container,
    .machine-description-container {
        min-width: 300px;
    }
    
    .machine-description-content {
        font-size: 0.8rem;
    }

    .historia-text {
        font-size: 0.8rem;
    }

    .historia-title {
        font-size: 1.5rem;
    }

    .historia-images {
        order: 2;
        display: flex;
        justify-content: space-between;
        flex-wrap: nowrap;
        flex-direction: row !important;
        width: 100%;
    }

    .historia-image1, .historia-image2 {
        width: 100%; 
        max-height: 250px; 
        object-fit: cover; 
        border-radius: 10px;
        margin: 10px;
    }

    .carousel-historia .carousel-item {
        position: relative;
        z-index: 2;
        overflow: hidden; 
    }

    .carousel-historia .carousel-item img {
        opacity: 1 !important; 
        filter: none !important; 
        z-index: 2; 
    }

    .carousel-historia .carousel-inner img {
        width: 100%;
        height: auto; 
        object-fit: contain; 
        max-height: 500px; 
    }
        
    .machine-card {
        height: 350px;
        width: 200px;
    }
    
    .machine-card img {
        width: 175px;
        height: 150px;
    }
    
    .acessorio-card {
        height: 240px;
        width: 140px;
    }

    .acessorio-card img {
        width: 100px;
        height: 100px;
    }
    
    .acessorio-card h3 {
        font-size: 14px;
        margin:auto;
    }

    .modal-content {
        width: 95vw;
        height: auto;
        padding: 0.5rem;
    }

    .modal-body {
        position: relative; 
    }

    .modal-body img {
        width: 80%;
        height: auto;
    }

    .modal-header h5 {
        font-size: 1.5rem;
        color: #ffffff;
        text-align: center;
        font-weight: bold;
    }

    .modal-footer {
        flex-direction: column;
        padding: 0.5rem;
        margin-top: 10px;
    }

    .modal-title {
        font-size: 0.8rem;
    }
    
    .footer-ingredients {
        font-size: 0.7rem;
    }
    
    .machine-carousel-container {
        width: 95%;
    }

    .arrow-left, .arrow-right {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.5rem;
        color: #fff;
        background: transparent;
        border: none;
        z-index: 10; 
    }

    .arrow-left {
        left: 5px; 
    }
    
    .arrow-right {
        right: 5px;
    }

    .navbar-collapse.open {
        max-height: 300%; 
        overflow-y: auto; 
    }

    .navbar-collapse.closing {
        transition: none; 
        max-height: 0;
        transition: 0s;
    }

    .carousel-historia .carousel-control-prev,
    .carousel-historia .carousel-control-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1020;
        width: 50px;
        height: 50px;
        opacity: 1;
    }

    .first-carousel{
        height: auto;

        & .carousel-item{
            height: auto;
        }
    }

    .container-menu{
        padding: 100 0 0 0;
    }

    .container-menu .menu{
        justify-content: space-around;
    }

    .container-size{
        padding: 100 0 0 0;
    }

    .container-size .size{
        flex-direction: column;
    }


    #nbar {
        padding: 0;
    }

    #nbar.shrink {
        padding: 0!important;
        height: 10dvh !important;
    }


    #nbar .menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #fff;
        position: absolute;
        top: 10vh;
        left: 0;
        padding: 10px 0;
    }

    .menu-toggle {
        display: block;
        position: absolute;
        right: 0;
        font-size: 3em;
        color: gray;
    }

    #nbar .menu.open {
        display: flex;
    }

    .nbar-div li {
        padding-bottom: 3dvh;
    }

    .mob-section .ifood {
        width: 100dvh;
        flex-direction: column;
    }

    .prices{
        flex-direction: column;
    }

    .mob-section{
        display: none;
    }

    .home-h1{
        display: none;
    }

    .prices{
        flex-direction: column;
        min-height: 60dvh;

        & .a-la-carte, .rodizio, .delivery{
            height: 60dvh;
            width: 100dvh;
            background: #d9d9d973;
        }

        & .img-hover-hidden, .motoboy-img{
            display: none;
        }

        & .text-delivery, .text-hover-hidden{
            display: block;

            & h5 {
                font-size: 0.6rem!important;
            }

            & h2 {
                font-size: 1rem!important;
            }
        }

    }

    .floating-box {
        width: 60;
        height: 60;
    }

    .floating-box:hover{
        width: 60;
    }

}

@media screen and (min-width: 0px) and (max-width: 319px){
    html, body, .container, .content{
        display: none;
    }
}
