@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   text-decoration: none;
   outline: none;
   scroll-behavior: smooth;
   font-family: 'Poppins', sans-serif; 
}
 
 :root {
    --color1:#d6e1e5; 
    --color2:#a93429;
    --color3:#962329;
    --color4:#c81d1b;
    --color5:#304999;
    --color6:#FED34A;
    

}  

section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background:var(--color4);
    transition: 0.5s;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    padding: 1rem 5%;   
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
}
.fundo{
    background-color: #ffffff;
}
.logocoelho{
    display: flex;
    margin-left: -80px;
    
}

@media (min-width: 769px) {
    header {
        backdrop-filter: saturate(180%) blur(20px);
        background: rgba(151, 39, 37, 0.38);
    }
}
header .logo {
    position: relative;
    width:400px;    
    height: 50px;
    display: flex;
    margin-top: -1px;
    margin-left: 10px;
}

@media (max-width: 768px) {
    header {
        backdrop-filter: none;
        background: rgba(151, 39, 37, 0.95);
        height: 60px;
    }

    .navbar a {
        color: #fff !important;
        font-size: 1rem;
    }
    section {
        padding: 60px 15px;
    }

    header .logo {
        display: none;
    }

    .content {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .content .imgBox {
        width: 80%;
        padding-right: 0;
        margin-top: 30px;
        justify-content: center;
    }

    .content .imgBox img {
        max-width: 500px;
    }

    .destaques-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 100px 1rem;
    }

    .categories {
        flex-direction: column;
        align-items: center;
    }

    .category-card {
        width: 90%;
        height: auto;
        margin: 20px 0;
    }

    #footer_content {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

    #input_group {
        left: 0;
        width: 100%;
        margin: 0;
    }
}

/* header .logo img {
    width: 100px;
} */



.navbar a {
    font-size: 1 rem;
    color: var(--color1);
    font-weight: 500;
    margin-left: 3.0rem;
    transition: .3s ease;
}

.navbar a:hover, 
.navbar a.active {
    color: var(--color6);
}

/* menu toggle */
#btn-mobile{
    display: none;
    cursor: pointer;
}
/* adaptando o menu a telas menores */
@media (max-width: 800px) {
    .navbar a {
        display: flex;
    }
    #menu{
        display: block;
        position: absolute;
        width: 100%;
        top: 80px;
        right: 0;
        background: var(--color4);
        height: 0;
        transition: .6s;
        z-index: 1000;
        visibility: hidden;
        overflow-y: hidden;
    }
    #navbar.active #menu {
        height: calc(100vh - 70px);
        visibility: visible;
        overflow-y: auto;
    }
    #menu a {
        padding: 1rem 0;
        margin: 0 1rem;
        border-bottom: 2px solid rgba(0, 0, 0, .05);
    }

    #btn-mobile {
        display: none;
    cursor: pointer;
    }

    #hamburger{
        border-top: 2px solid;
        width: 20px;
        display: block;
        color: var(--color1);
    }

    #hamburger::after, #hamburger::before{
        content: '';
        display: block;
        width: 20px;
        height: 2px;
        background: currentColor;
        margin-top: 5px;
        transition: .4s;
        position: relative;
    }
    #navbar.active #hamburger{
        border-top-color:transparent;
    }
    #navbar.active #hamburger::before{
        transform: rotate(135deg);
    }
    #navbar.active #hamburger::after{
        transform: rotate(-135deg);
        top: -7px;
    }

    
}
@media (max-width: 426px) {
    header {
        padding: 1rem 1%;
    }

    .content .textBox h2 {
        font-size: 1.5rem;
    }

    .content .textBox h2 span {
        font-size: 1rem;
    }

    .content .imgBox {
        width: 100%;
        margin-top: 10px;
    }

    .destaques-container {
        padding: 1rem;
    }
}

/* * */

.content {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.content .btn {
        background-color: var(--color6); 
        color: white; 
        padding: 15px 32px; /* Espaçamento interno */
        text-align: center; 
        text-decoration: none; 
        display: inline-block; /* Mostrar como um bloco inline */
        font-size: 16px; /* Tamanho da fonte */
        margin: 4px 2px; /* Margem */
        cursor: pointer; /* Cursor de mãozinha */
        border: none; /* Sem borda */
        border-radius: 8px; /* Bordas arredondadas */
        transition: background-color 0.3s; /* Efeito de transição para a cor de fundo */
}

.content .btn:hover {
    background-color:var(--color6);
    opacity: 0.8;
}

.content .textBox {
    position: relative;
    max-width: 600px;
}

.content .textBox h2 {
    color: var(--color1);
    font-size: 2.5em;
    line-height: 1.5em;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap; /* Impede que o texto do <h2> quebre a linha */
}

.content .textBox h2 span {
    font-size: 1.5em;
    white-space: nowrap; /* Impede que o texto do <span> quebre a linha */
    gap: 10px;
    display: inline; /* Garante que o <span> seja exibido em linha */
    color: var(--color6);
}

.content .textBox p {
    color: var(--color1);
}

.content .textBox input {
    display: inline-block;
    margin-top: 20px;
    padding: 8px 20px;
    background-color: var(--color3);
    color: var(--color1);
    border-radius: 40px;
    border-color: var(--color2);
    font-weight: 500;
    letter-spacing: 1px;    
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.4s;
    cursor: pointer;
}

.content .textBox input:hover{
    background: var(--color2);
    opacity: 0.8;
}

.content .imgBox {
    width: 100px;
    height: 500px;
    display: flex;
    padding-right: 50px;
    margin-top: 50px;
    justify-content: flex-end;
}

.content .imgBox img {
    max-width: 400px;
}

.thumb {
    position: absolute;
    left: 50%;
    bottom: -70px;
    transform: translateX(-50%);
    display: flex;
}

.thumb li {
    list-style: none;
    display: inline-block;
    margin: 0 20px;
    cursor: pointer;
    transition: 0.5s;   
}

.thumb li:hover {
    transform: translateY(-15px);
}

.thumb li img {
    max-width: 60px;
}

.thumb li img.active {
    transform: translateY(-15px);
}

/* transições mais suaves */

.imgBox img.biscoito {
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    opacity: 1;
    transform: scale(0.95); /* Adiciona um efeito de escala */
    
}

.imgBox img.biscoito.show {
    opacity: 1;
    transform: scale(1);
}

/* Transição suave na cor de fundo */
.sec {
    transition: background-color 0.5s ease-in-out;
}

/* Transição suave nas miniaturas */
.thumb li img {
    transition: border 0.3s ease-in-out, opacity 0.3s ease-in-out;

}



.home-sci {
    position: absolute;
    bottom: 4rem;
    width: 170px;
    display: flex;
    justify-content: space-between;  
  }
  
  .home-sci a{
      position: relative;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      width: 40px;
      height: 40px;
      background: transparent;
      border: .2rem solid var(--color1);
      border-radius: 50%;
      font-size: 20px;
      color: var(--color1);
      z-index: 1;
      overflow: hidden;
  }
  
  .home-sci a::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 0;
      height: 100%;
      background:var(--color3);
      z-index: -1;
      transition: .5s ease;
  }
  
  .home-sci a:hover::before {
      width: 100%;
  }

  .navbar a:hover {
    color: var(--color3);
}

/* Estado ativo (enquanto clicado) dos links da navbar */
.navbar a:active {
    color: var(--color1);
}

/* Link marcado como ativo, exemplo de página atual */  
.navbar a.active { /* Cor diferente para o link ativo */
    color: rgb(220, 175, 12);
}




     h1 {
    margin: 0;
    font-size: 36px;
    color: var(--color3);
}
 /* Grade de Categorias */
.categories {
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 2rem;
    align-items: flex-start;
    padding-bottom: 6rem;
    background-color: var(--color1);
    flex-wrap: wrap;
}

.category-card {
    background-color: var(--color3);
    border: 1px solid var(--color3);
    border-radius: 8px;
    margin: 17px;
    margin-top: 70px;
    height: 460px;
    width: 350px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}


.category-card:hover {
    transform: scale(1.05);
    cursor: pointer;
    background: #a11f26e8;
}

.category-card img {
    width: 70%;
    height: auto;
    object-fit: cover;
    margin-top: 5px;
}

#img-card{
    padding-top: 15px;
}


.category-card h2 {
    margin: 0;
    padding: 15px;
    font-size: 24px;
    color: var(--color6);
}

.category-card p {
    padding: 0 15px 20px;
    color: var(--color1);
}

.category-card .checkButton {
    background-color: var(--color5); 
    color: white; 
    padding: 12px 25px; 
    text-align: center; 
    text-decoration: none; 
    display: inline-block;
    font-size: 16px; 
    margin: -5px 2px; 
    cursor: pointer; 
    border: none; 
    border-radius: 8px; 
    transition: background-color 0.3s;
}

.category-card .checkButton:hover{
    background-color:var(--color5);
    opacity: 0.8; 
}


/* Títulos */
.heading  {

    
    font-size: 4rem;    
    margin-bottom: 3rem;
    text-align: center;
    color: #a93429;
    width: 100%; /* Adiciona largura completa para garantir que o título não afete os cards */
}

.heading .section1-heading{
    font-size: 3rem;
    color: var(--color3);
    margin-top: -20px;
    word-spacing: 20px;
    
}

 .section1-span {
    color: var(--color5);
}


/* Estilo básico para o botão */
#checkButton {
    background-color: var(--color5); /* Cor de fundo verde */
    color: white; /* Cor do texto */
    padding: 15px 32px; /* Espaçamento interno */
    text-align: center; /* Centralizar o texto */
    text-decoration: none; /* Remover sublinhado */
    display: inline-block; /* Mostrar como um bloco inline */
    font-size: 16px; /* Tamanho da fonte */
    margin: 4px 2px;
    margin-top: -10px; /* Margem */
    cursor: pointer; /* Cursor de mãozinha */
    border: none; /* Sem borda */
    border-radius: 8px; /* Bordas arredondadas */
    transition: background-color 0.3s; /* Efeito de transição para a cor de fundo */
  }
  
  /* Efeito de hover (passar o mouse por cima) */
  #checkButton:hover {
    background-color:var(--color3); /* Cor de fundo no hover */
  }

  /* destaques */
.destaques {
    height:60% ;
    position: relative;
    padding-top: 5rem; /* Adiciona espaço para a heading */
}

/* Centralizar a heading no topo */
.heading {
    position: absolute;
    top: 17px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    text-transform: uppercase;
    width: 100%;
}

.heading_2{
    position: absolute;
    top: 17px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    text-transform: uppercase;
    width: 100%;

}
.heading_2 span{
    font-size: 4rem;
    font-weight: 800;
    color: var(--color5);
}
.heading_2 h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-top: 3px;
}
/* Estilos da heading */
.heading span {
    font-size: 4rem;
    font-weight: 800;
    color: var(--color5);
}

span .um {
    font-size: 4rem;
    font-weight: 800;
    color: var(--color6);
}

.heading h1 {
    font-size: 3rem;
    color: #962329;
    margin-top: 3px;
}

/* Estilizar o container dos destaques */
.destaques-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    gap: 6.5rem;
    margin-top: 100px;
    justify-content: center;
    max-width: 1200px;
    margin: auto;
    padding: 200px 1rem;
}


/* Estilizar as caixas dentro do container */
.destaques-container .box {
    background: var(--color3);
    padding: 20px;
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center;
    border-radius: 0.5rem;
    box-sizing: border-box; /* Inclui padding e border na largura total */
    transition: transform 0.2s ease;
}

.destaques-container .box:hover{
        transform: scale(1.05);
        cursor: pointer;
        background: #a11f26e8;
}

/* Ajusta a imagem dentro da caixa */
.destaques-container .box .box-img {
    width: 150px;
    height: 150px;
    margin-top: -100px; /* Ajusta a posição da imagem */
}

.destaques-container .box .box-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* Estiliza as estrelas */
.stars {
    margin: 1rem 0 0.1rem;
    color: var(--color6);
}

.destaques-container .box .stars .bx {
    color: var(--color6);
}

/* Estilo para o título e descrição dos produtos */
.destaques-container .box h2 {
    color: var(--color1);
    font-size: 1.4rem;
}

.destaques .heading_2 #span_2 {
    color: #d4a518;
}

.destaques-container .box span {
    color: var(--color6);
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0.2rem 0 0.5rem;
}


 .box .btn {
    background-color: var(--color5); 
    color: white; 
    padding: 15px 32px; /* Espaçamento interno */
    text-align: center; 
    text-decoration: none; 
    display: inline-block; /* Mostrar como um bloco inline */
    font-size: 16px; /* Tamanho da fonte */
    margin: 4px 2px; /* Margem */
    cursor: pointer; /* Cursor de mãozinha */
    border: none; /* Sem borda */
    border-radius: 8px; /* Bordas arredondadas */
    transition: background-color 0.3s; /* Efeito de transição para a cor de fundo */
 }


 .box .btn:hover{
    background-color:var(--color5);
    opacity: 0.8;
 }


 /* maps */
#localizacao {
    background:#fff;
    display: flex;
    align-items: center;
    justify-content: center;
   
   
    
}

#localizacao .heading #span1 {
    
    color: var(--color6);
}


 #map { 
    
    height: 400px;
    width: 90%;
    border: 2px solid var(--color6);
    box-shadow: 2px 5px 20px 3px var(--color3); 
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 80px;
    
 }

 #map {
    height: 400px;
    width: 100%;
    
}
.map-description {
    margin-top: 20px;
}
.map-description h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}
.map-description p {
    font-size: 1em;
    line-height: 1.5;
}

 /* depoimentos */
 .container {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color4);
  }

  
 .depoimentos {
    background-color: var(--color1);
  }
  
  .testimonial {
    position: relative;
    max-width: 900px;
    width: 100%;
    padding: 50px 0;
    overflow: hidden;
    left: 13%;
  }
  
  .testimonial .image {
    height: 170px;
    width: 170px;
    object-fit: cover;
    border-radius: 50%;
  }
  
  
  .testimonial .slide {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  
  .slide p {
    text-align: center;
    padding: 0 100px;
    font-size: 17px;
    font-weight: 400;
    color: var(--color3);
  }
  
  .slide .quote-icon {
    font-size: 30px;
    color: var(--color5);
  }
  
  .slide .details {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .details .name {
    font-size: 16px;
    font-weight: 600;
    color: var(--color5);
  }
  
  .details .job {
    font-size: 15px;
    font-weight: 400;
    color: var(--color3);
  }
  
  /* swiper button css */
  .nav-btn {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    transform: translateY(30px);
    background-color: rgba(0, 0, 0, 0.1);
    transition: 0.2s;
  }
  
  .nav-btn:hover {
    background-color: rgba(0, 0, 0, 0.2);
  }
  
  .nav-btn::after,
  .nav-btn::before {
    font-size: 20px;
    color: var(--primary-container);
  }
  
  .swiper-pagination-bullet {
    background-color: rgba(0, 0, 0, 0.8);
  }
  
  .swiper-pagination-bullet-active {
    background-color: var(--primary-container);
  }

  .swiper-button-next:after, .swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
    color: var(--color5);
  }

  

/* Esconde o painel lateral do leaflet-routing-machine */
.leaflet-routing-container {
    display: none !important;
}
/* footer- */
footer {
   width: 100%;
   color: var(--color1); 
}

.footer-link{
    text-decoration: none;
}


#footer_content {
    background: var(--color4);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 3rem 3.5rem;
}

#footer_contacts h1 {
    margin-bottom: 0.75rem;
}

#footer_contacts img{
    width: 50%;
    
}


#footer_social_media {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

#footer_social_media .footer-link{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    width: 2.5rem;
    color: var(--color1);
    border-radius: 50%;
    transition: all 0.4s;
}

#footer_social_media .footer-link i {
    font-size: 1.25rem;
}

#footer_social_media .footer-link:hover{
     opacity: 0.8;
}

#instagram{
    background: linear-gradient(#7f37c9, #ff2992, #ff9807);
}

#facebook {
    background-color: #4267b3;
}

#wathsapp {
    background-color: #25d366;
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    list-style: none;
}

.footer-list .footer-link {
    color: #fff;
    transition: all 0.4s;
}

.footer-list .footer-link:hover{
    color: var(--color6);
}

#footer_subscribe {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#footer_subscribe p {
    color: #fff;
    position: relative;
    top: -10px;
}

#footer_content h2, h3 {
    color: var(--color6);
}

#input_group {
    display: flex;
    position: relative;
    align-items: center;
    background-color: #fff;
    border-radius: 4px;
    margin-right: 5%;
    left: 300%;
    bottom: 100%;
}

#input_group input{
    padding: 0.75rem;
    width: 100%;

}

#input_group input::placeholder {
    color: var(--color3);
}

#input_group button  {
    background-color: var(--color5);
    border: none;
    color: #fff;
    padding: 0px 1.5rem;
    height: 100%;
    border-radius: 0px 4px 4px 0px;
    cursor: pointer;
    transition: all 0.4s;
}

#input_group button i {
    font-size: 25px;
}

#input_group button:hover{
    opacity: 0.8;
}

#footer_copyright {
    display: flex;
    flex-direction: column;
    background: var(--color3);
    color: var(--color1);
    padding: 2.5rem 1.5rem;
    font-weight: 300;
}
 .footer-locations {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .location {
            flex: 1;
            min-width: 280px;
            max-width: 350px;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            transition: all 0.3s ease;
        }
        
        .location:hover {
            background: rgba(255, 255, 255, 0.12);
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        
        .location h4 {
            color: var(--color6);
            font-size: 1.3rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .location h4 i {
            font-size: 1.4rem;
        }
        
        .location p {
            margin: 0.6rem 0;
            font-size: 0.95rem;
            line-height: 1.5;
        }
        
        .location .highlight {
            font-weight: 500;
            color: var(--color6);
            background: rgba(0, 0, 0, 0.15);
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            display: inline-block;
            margin-top: 0.3rem;
        }
        
        .copyright-notice {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            margin-top: 1rem;
            font-size: 1rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
        }
        
        .copyright-notice p {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .copyright-notice .logo-small {
            width: 180px;
            filter: brightness(0) invert(1) opacity(0.8);
        }
        
/* responsive footer */
@media screen and (max-width: 768px) {
    #footer_content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media screen and (max-width: 426px) {
    #footer_content {
        grid-template-columns: repeat(1, 1fr);
        padding: 3rem 2rem;
    }
}

/* Para telas menores que 768px (tablets e dispositivos móveis) */
@media screen and (max-width: 768px) {
    header {
        padding: 1rem 3%;
    }

    .navbar a {
        font-size: 1rem;
        margin-left: 1.5rem;
    }

    .content {
        flex-direction: column;
        padding: 2rem;
    }

    .content .textBox h2 {
        font-size: 2rem;
    }

    .content .textBox h2 span {
        font-size: 1.2rem;
    }

    .content .imgBox {
        width: 80%;
        margin-top: 20px;
    }

    .category-card {
        width: 90%;
        margin: 10px auto;
    }

    .destaques-container {
        grid-template-columns: repeat(1, 1fr);
        padding: 2rem 1rem;
    }

    .footer-link {
        font-size: 1rem;
    }

    #footer_content {
        grid-template-columns: repeat(2, 1fr);
        padding: 2rem 1rem;
    }
   
}

/* Para telas menores que 426px (smartphones) */
@media screen and (max-width: 480px) {
    section {
        padding: 40px 15px !important; /* Padding reduzido */
        min-height: auto; /* Remove altura fixa */
        flex-direction: column;
        justify-content: center;
        align-items: center;
      }
      .content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
      }
      .textBox {
        width: 100%;
        margin: 0 auto;
      }
      .textBox h2 {
        font-size: 1.6rem;
        line-height: 1.3;
        white-space: normal;
        margin: 0 auto 15px; /* Centraliza e adiciona espaço */
      }

      .textBox p {
        font-size: 0.95rem;
        max-width: 90%;
        margin: 0 auto 25px; /* Centraliza parágrafos */
      }
    
      header {
        background: rgba(151, 39, 37, 0.98) !important; /* Cor sólida */
        backdrop-filter: none !important; /* Remove completamente o blur */
        height: 60px; /* Altura fixa */
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15); /* Sombra discreta */

        
    }

    .navbar a {
        color: #fff !important;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
        padding: 12px 0; /* Espaçamento vertical */
    }

    #menu {
        top: 60px !important; /* Alinhamento com altura do header */
        background: rgba(151, 39, 37, 0.98); /* Fundo consistente */
    }
  
    .content .textBox h2 {
      
        font-size: 1.5rem;
        width: 85%;
        height: 85%;
       
    }

    .content .textBox h2 span {
        font-size: 1rem;
    }

    .content .imgBox {
        width: 100%;
        margin-top: 10px;
    }

    .category-card {
        width: 100%;
        margin: 10px 0;
    }

    .destaques-container {
        grid-template-columns: repeat(1, 1fr);
        padding: 1rem;
    }

    #footer_content {
        grid-template-columns: repeat(1, 1fr);
        padding: 1rem;
    }
    .imgBox {
        width: 100%;
        margin: 0 auto;
        padding-right: 0;
      }
      
      .imgBox img {
        max-width: 70%; /* Imagem proporcional */
        height: auto;
      }
      .thumb {
        position: relative;
        bottom: 0;
        justify-content: center;
        margin-top: 30px;
    }

    .home-sci {
        position: relative;
        bottom: 0;
        margin: 20px auto;
        justify-content: center;
    }
.imgBox img.biscoito {
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    opacity: 1;   
    height: 50%;
  
}
.categories {
    gap: 1rem; /* Reduz o espaçamento entre os cards */
    padding-bottom: 3rem; /* Ajusta o padding inferior */
}

/* Links dos cards */
.category-card-link {
    margin: 0.5rem 0; /* Espaçamento vertical reduzido */
    display: block;
   
}

/* Cards individuais */
.category-card {
    margin: 10px; /* Reduz as margens internas */
    height: auto; /* Altura automática */
    padding: 15px; /* Padding interno reduzido */
}

/* Imagem dentro do card */
.img-card-cls {
    margin-top: 10px; /* Reduz espaço acima da imagem */
}

/* Texto do card */
.category-card h2 {
    margin: 10px 0; /* Ajuste de margem do título */
}

.category-card p {
    margin: 8px 0 12px; /* Redução de espaçamento do parágrafo */
    line-height: 1.4; /* Melhora a densidade do texto */
}

/* Botão */
.checkButton {
    margin: 5px 0; /* Reduz espaçamento do botão */
    padding: 8px 20px; /* Tamanho compacto */
}

}


/* modal.js */
/* Modal Container */
/* Estilos para o modal */
.modal {
    display: none; /* Escondido por padrão */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5); /* Fundo escurecido */
  }

  .modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
  
  .modal-content {
    background-color:var(--color3);
    margin: 15% auto;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px; /* Largura máxima */
  }
  
  .close {
    color:var(--color1);
    float: right;
    font-size: 28px;
    font-weight: bold;
    transition: all 1s;
  }
  
  .close:hover,
  .close:focus {
    color: var(--color6);
    text-decoration: none;
    cursor: pointer;
  }

  .modal-content h2 {
    color:var(--color6);
    font-size: 24px;
    margin-bottom: 20px;
}

.modal-content p {
    font-size: 18px;
    line-height: 1.6;
    margin: 10px 0;
}

.modal-content p strong {
    color: var(--color6);
}



.modal-content label {
    color: var(--color1);
}


form input {
    width: 100%;
    padding: 10px;
    border: 2px solid #ccc;
    border-radius: 5px;
    color: var(--color3);
}

form input:hover{
    background-color: #e7ebedbd;

}

form input[type="radio"] {
    cursor: pointer;
    width: 20px; /* Aumenta o tamanho do círculo */
    height: 20px;
    margin-right: 5px;
    display: flex;
}


.radio-options {
    display: flex;
    gap: 30px;
    margin-bottom: 5px;
}

.radio-options label {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Altera a cor do círculo quando marcado */
form input[type="radio"]:checked {
    background-color: var(--color6); /* Note que isso pode não ser suportado em todos os navegadores */
}

input:focus {
    background-color: var();
    border-color: var(--color6);
    outline: none;
 }


input[type="text"],
input[type="email"],
textarea,
select {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--color1); 
    border-radius: 5px;
} 

#cargo{
    margin-bottom: 20px;
    cursor: pointer;
}

/* formulario dentro do modal entre em contato */

.form-container {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.form-container h1 {
    color: #f1c40f;
    font-size: 2em;
    margin-bottom: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.form-group label {
    margin-bottom: 5px;
    color: #777;
    left: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

input[type="text"],
input[type="email"],
textarea,
select {
    width: 100%;
    padding: 5px;
    color: var(--color3);
    border: 0;
    border-radius: 5px;
    border-bottom: 2px solid rgb(200, 200, 200);
    outline: 0;
    font-size: 16px;
}

input[type="text"],
input[type="email"],
textarea,
select:focus{
    border-bottom: 2px solid var(--color6);
}

input[type="text"],
input[type="email"],
textarea,
select:valid{
    border-bottom: 2px solid var(--color6);
}

.double-input {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.double-input div {
    width: 100%;    
}

#assunto{
    cursor: pointer;
}

textarea {
    resize: none;
    color: var(--color3);
}

.submit-btn {
    background-color: #f1c40f;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    width: 100%;
}

.submit-btn:hover {
    background-color: #d4a518;
}

.anonimo-msg {
    color: #f1c40f;
    margin-top: 20px;
    font-size: 0.9em;
}

#img-card{
    padding-top: 15px;
}
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #cc9d1c;
    color: rgb(0, 0, 0);
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.3);
}

.cookie-banner.hidden {
    display: none; /* Esconde o banner */
}

.cookie-button {
    background-color: #ff3c00;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.cookie-button:hover {
    background-color: #e6b800;
}

.textBox p {
    text-align: justify;
    text-justify: inter-word;
}
/* Fallback para navegadores que não suportam backdrop-filter */
@supports not (backdrop-filter: blur(20px)) {
    header {
        background: rgba(151, 39, 37, 0.95);
    }
}

.imagem_banner_topo {
    position: relative;
    width: 100%; /* Garante que o contêiner ocupe toda a largura */
    height: 100vh; /* Garante que o contêiner ocupe a altura da janela */
    object-fit: cover;
}

.imagem_banner {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%; /* Ajusta a largura da imagem */
    height: 90%; /* Ajusta a altura da imagem */
    object-fit: cover; /* Mantém as proporções da imagem */
    object-position: center; /* Centraliza a imagem */
    opacity: 0; 
    transition: opacity 1.5s ease-in-out; 
}
.imagem_banner.active {
    opacity: 1; /* A imagem ativa será visível */
}

#mapa { 
    display: flex;
    justify-content: center;
    align-items: center;    
    padding: 80px; 
}

.imagem_mapa {
    max-width: 100%;
    height: auto;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5); 
    border-radius: 8px; 
    border: 3px solid rgb(177, 39, 39);
}


/* ===== VERSÃO MOBILE - MANTENDO DESIGN ORIGINAL ===== */
@media screen and (max-width: 768px) {
    /* Header Mobile - Mantendo estilo visual */
    header {
        height: 70px;
        padding: 1rem 5%;
        backdrop-filter: none;
        background: rgba(151, 39, 37, 0.98);
    }

    header .logo {
        width: 250px;
        height: 40px;
        margin-left: 0;
    }

    /* Menu Mobile Hamburger */
    #btn-mobile {
        display: flex;
        flex-direction: column;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        gap: 4px;
    }

    #hamburger {
        width: 25px;
        height: 3px;
        background: var(--color1);
        transition: all 0.3s ease;
        position: relative;
    }

    #hamburger::before,
    #hamburger::after {
        content: '';
        position: absolute;
        width: 25px;
        height: 3px;
        background: var(--color1);
        transition: all 0.3s ease;
    }

    #hamburger::before {
        transform: translateY(-8px);
    }

    #hamburger::after {
        transform: translateY(8px);
    }

    #navbar.active #hamburger {
        background: transparent;
    }

    #navbar.active #hamburger::before {
        transform: rotate(45deg);
    }

    #navbar.active #hamburger::after {
        transform: rotate(-45deg);
    }

    #menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--color4);
        height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    #navbar.active #menu {
        height: calc(100vh - 70px);
        padding: 2rem 0;
    }

    #menu a {
        color: var(--color1);
        font-size: 1.1rem;
        font-weight: 500;
        padding: 1rem 2rem;
        width: 100%;
        text-align: center;
        border-bottom: 2px solid rgba(0, 0, 0, .05);
        transition: all 0.3s ease;
    }

    .navbar a {
        margin-left: 0;
    }

    /* Sections Mobile - Mantendo proporções */
    section {
        padding: 80px 20px 40px 20px;
        min-height: auto;
    }

    /* Content Mobile - Layout vertical mantendo estilo */
    .content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .content .textBox {
        max-width: 100%;
    }

    .content .textBox h2 {
        font-size: 2rem;
        line-height: 1.3;
        white-space: normal;
    }

    .content .textBox h2 span {
        font-size: 1.5rem;
    }

    .content .textBox p {
        font-size: 1rem;
        text-align: center;
    }

    .content .imgBox {
        width: 100%;
        height: auto;
        padding-right: 0;
        margin-top: 2rem;
        justify-content: center;
    }

    .content .imgBox img {
        max-width: 300px;
    }

    /* Banner Mobile */
    .imagem_container {
        height: 50vh;
    }

    /* Categories Mobile - Mantendo cards similares */
    .categories {
        padding: 4rem 1rem;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .category-card {
        width: 100%;
        max-width: 350px;
        height: auto;
        min-height: 400px;
        margin: 10px 0;
    }

    .category-card img {
        width: 60%;
    }

    /* Headings Mobile - Mantendo hierarquia */
    .heading {
        font-size: 2.5rem;
        margin-bottom: 2rem;
        position: static;
        transform: none;
    }

    .heading .section1-heading {
        font-size: 2rem;
        word-spacing: normal;
        margin-top: 0;
    }

    .section1-span {
        font-size: 2rem;
    }

    /* Destaques Mobile - Mantendo grid vertical */
    .destaques {
        height: auto;
        padding: 4rem 1rem;
        position: relative;
    }

    .heading_2 {
        position: static;
        transform: none;
        margin-bottom: 3rem;
    }

    .heading_2 h1 {
        font-size: 2rem;
    }

    .heading_2 span {
        font-size: 2.5rem;
    }

    .destaques-container {
        grid-template-columns: 1fr;
        gap: 4rem;
        margin-top: 0;
        padding: 0;
    }

    .destaques-container .box .box-img {
        width: 120px;
        height: 120px;
        margin-top: -80px;
    }

    /* Localização Mobile */
    #localizacao {
        padding: 4rem 1rem;
    }

    #mapa {
        padding: 2rem;
    }

    /* Footer Mobile - Mantendo estrutura */
    #footer_content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
    }

    #footer_contacts img {
        width: 150px;
    }

    .footer-locations {
        flex-direction: column;
        gap: 1.5rem;
    }

    .location {
        min-width: auto;
        max-width: 100%;
    }

    #input_group {
        position: static;
        margin: 1rem 0;
    }

    /* Cookie Banner Mobile */
    .cookie-banner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px 15px;
    }

    .cookie-banner p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .cookie-button {
        width: 100%;
        max-width: 200px;
        padding: 12px 24px;
    }
}

/* Mobile Pequeno - Ajustes finos */
@media screen and (max-width: 480px) {
    .content .textBox h2 {
        font-size: 1.8rem;
    }

    .content .textBox h2 span {
        font-size: 1.3rem;
    }

    .content .imgBox img {
        max-width: 250px;
    }

    .heading {
        font-size: 2rem;
    }

    .heading .section1-heading {
        font-size: 1.8rem;
    }

    .section1-span {
        font-size: 1.8rem;
    }

    .heading_2 h1 {
        font-size: 1.8rem;
    }

    .heading_2 span {
        font-size: 2rem;
    }

    .category-card {
        margin: 10px;
        height: auto;
    }

    .cookie-banner {
        padding: 15px 10px;
    }

    .cookie-banner p {
        font-size: 0.85rem;
    }
}

/* Modal Styles (mantidos do original) */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: var(--color3);
    margin: 15% auto;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
}

.close {
    color: var(--color1);
    float: right;
    font-size: 28px;
    font-weight: bold;
    transition: all 1s;
}

.close:hover,
.close:focus {
    color: var(--color6);
    text-decoration: none;
    cursor: pointer;
}