@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playwrite+GB+S:ital,wght@0,100..400;1,100..400&family=Rum+Raisin&family=Teko:wght@300..700&family=Tilt+Neon&family=Turret+Road:wght@200;300;400;500;700;800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

html{
  scroll-behavior: smooth;
}

#area-produtos #area-produto-secao1 #area-produto-secao2 {
    scroll-margin-top: 100px; /* Ajuste este valor de acordo com a altura do seu menu */
}

body {
  line-height: 1.6;
  color: #333;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

/*WhatsApp icone*/
.whatsapp-fixed {
    position: fixed;
    bottom: 20px;       /* Distância do fundo da tela */
    right: 20px;        /* Distância da lateral direita */
    width: 60px;        /* Tamanho do botão */
    height: 60px;
    background-color: #00816a; /* Verde oficial do WhatsApp */
    color: #fff;
    border-radius: 50%; /* Faz o botão ser redondo */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 10000;     /* Garante que fique por cima de tudo */
    transition: transform 0.3s ease;
}

.whatsapp-fixed img {
    width: 35px;        /* Tamanho do ícone dentro do círculo */
    height: auto;
}

/* Efeito ao passar o mouse */
.whatsapp-fixed:hover {
    transform: scale(1.1); /* Aumenta levemente */
    background-color: #1ebe57;
}

/* Ajuste para telas pequenas (Mobile) */
@media (max-width: 768px) {
    .whatsapp-fixed {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
}

/*Video Flutuante*/
.video-floating-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 300px; /* Largura do player flutuante */
    z-index: 9999;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    overflow: hidden;
    animation: surgindo 0.5s ease-out;
}

/* Proporção 16:9 para o vídeo */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; 
    height: 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Botão de Fechar (X) */
.btn-fechar-video {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    cursor: pointer;
    z-index: 10;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.btn-fechar-video:hover {
    background: #ff0000;
}

/* Animação para o vídeo aparecer suavemente */
@keyframes surgindo {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Esconder em telas muito pequenas (opcional) */
@media (max-width: 480px) {
    .video-floating-container {
        width: 200px;
        bottom: 10px;
        left: 10px;
    }
}

/*tela WhatsApp */
.modal-overlay {
    display: none; /* Escondido por padrão */
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Transparência escura */
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

/* Caixa do Modal */
.modal-container {
    background: #fdfdfd;
    width: 90%;
    max-width: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    font-family: 'Arial', sans-serif;
}

/* Cabeçalho superior */
.modal-header {
    background: #00816a; /* Cor de atendimento online */
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-logo-icon { width: 35px; height: 35px; border-radius: 50%; background: white; padding: 2px; }
.header-info { display: flex; align-items: center; gap: 12px; }
.header-info strong { display: block; font-size: 14px; text-transform: uppercase; }
.header-info span { font-size: 11px; opacity: 0.9; }

.close-modal { background: none; border: none; color: white; font-size: 24px; cursor: pointer; }

/* Balão de Chat */
.chat-bubble {
    background: #ffffff;
    padding: 15px;
    border-radius: 10px;
    margin: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    font-size: 13px;
    color: #444;
    border: 1px solid #eee;
}

/* Formulário e Inputs */
.modal-form { padding: 0 20px 20px; display: flex; flex-direction: column; gap: 12px; }

.modal-form input, .modal-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #f9f9f9;
    box-sizing: border-box;
}

.modal-form textarea { height: 80px; resize: none; }

/* Botão WhatsApp */
.btn-iniciar {
    background: #00816a; /* Verde oficial WhatsApp */
    color: white;
    border: none;
    padding: 15px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-iniciar:hover { 
  background: #1ebe57; 
  transform: scale(1.02); 
}

/* TOPBAR */
.top-bar-contato {
    background-color:#01448b; /* Azul marinho da imagem */
    padding: 10px 0;
    width: 100%;
}

.container-top-bar {
    display: flex;
    flex-direction: row;      /* Garante que fiquem um do lado do outro */
    justify-content: center;   /* Centraliza o grupo todo na tela */
    align-items: center;       /* Alinha verticalmente */
    gap: 30px;                /* Espaçamento entre os blocos de contato */
    max-width: 1200px;
    margin: 0 auto;
}

.item-contato-topo {
    display: flex;
    align-items: center;       /* Alinha o ícone PNG com o texto ao lado */
    gap: 8px;                 /* Espaço curto entre o ícone e o número */
}

.item-contato-topo img {
    height: 18px;             /* Ajuste o tamanho do seu PNG aqui */
    width: auto;
    display: block;
}

.item-contato-topo span {
    color: #ffffff;
    font-size: 11px;
    font-family: sans-serif;
    font-weight: 500;
}

/* NAVBAR */
.navbar {
  background: #ffffffb0;
  border-bottom: 1px solid #ddd;
  position: -webkit-sticky; /* Suporte Safari */
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.icon-soma-btn {
    height: 15px;             /* Ajusta o tamanho do seu ícone PNG */
    width: auto;
}

/* LOGO */
.logo img {
  height: 40px;
}

/* MENU */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  color: #444;
  font-weight: bold;
  text-decoration: none;
  padding: 5px 0;
  font-size: 14px;
}

.nav-menu a:hover {
  border-bottom: 2px solid #44C2E0;
}

/* DROPDOWN */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 30px;
  left: 0;
  background-color: #01448b;
  min-width: 220px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  list-style: none;
  z-index: 10;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  color: white;;
  font-size: 12px;
}

.dropdown-menu li a:hover {
  background: #44C2E0;
}

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

/* BOTÃO */
.btn-orcamento-estilo {
    background-color: #44C2E0; /* Cor azul celeste da imagem */
    color: #ffffff;            /* Texto em branco */
    padding: 10px 23px;       /* Espaçamento interno */
    border-radius: 8px;        /* Bordas levementes arredondadas */
    text-decoration: none;
    font-weight: bold;         /* Texto em negrito */
    font-size: 12px;
    display: inline-flex;      /* Mantém ícone e texto na mesma linha */
    align-items: center;       /* Centraliza verticalmente */
    gap: 10px;                /* Espaço entre o ícone e o texto */
    transition: background 0.3s ease;
}

.btn-orcamento-estilo:hover {
    background-color:#01448b; /* Cor levemente mais escura ao passar o mouse */
}

.icon-whats-btn {
    height: 20px;             /* Ajusta o tamanho do seu ícone PNG */
    width: auto;
}

/* ESTILO DO MENU HAMBÚRGUER (Escondido no Desktop) */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle .bar {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #01448b;
  transition: 0.3s;
}

/* RESPONSIVIDADE (Mobile) */
@media (max-width: 992px) {
  .top-bar-contato { display: none; } /* Opcional: esconde topbar no mobile para ganhar espaço */

  .menu-toggle { display: flex; }

  .nav-menu {
    position: absolute;
    top: 70px; /* Ajuste conforme a altura da sua navbar */
    left: -100%;
    flex-direction: column;
    background-color: #fff;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 10px rgba(0,0,0,0.1);
    gap: 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
  }

  .dropdown-menu {
    position: static;
    display: none; /* Só aparece se clicar (requer JS extra) ou manter hover */
    width: 100%;
  }

  .btn-orcamento-estilo {
    padding: 8px 15px;
    font-size: 10px;
  }
}

/*Carrosel*/
.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-item {
  min-width: 100%;
}

.carousel-item img {
  width: 100%;
  display: block;
}

/* Botões */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0);
  color:  #44C2E0;
  border: none;
  font-size: 30px;
  padding: 10px 15px;
  cursor: pointer;
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}



/* CONTAINER */

.breadcrumb {
  list-style: none;
  margin-bottom: 10px;
  color: #777;
}

.img-cuboazul{
  width: 20px;
  height: 20px;
}

.img-losangos{
  width: 500px;
  height: 350px;
}

.about {
  padding: 60px 20px;
  background: #fff;
}

.about-container {
  max-width: 900px;
  width: 90%;        /* Margem de segurança para não encostar nos cantos em telas menores */
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  gap: 60px;        
}

/* TEXTO */
.about-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color:  #44C2E0;
  font-size: 14px;
  margin-bottom: 15px;
}

.about-text h2 {
  font-size: 20px;
  color: #01448b;
  margin-bottom: 15px;
}

.about-text h4 {
  font-size: 14px;
  color: #000;
  margin-bottom: 20px;
}

.about-text p {
  color: #000000;
  margin-bottom: 15px;
  line-height: 1.6;
  font-size: 12px;
}

.about-text strong {
  display: block;
  margin-bottom: 25px;
  font-size: 14px;
}

/* BOTÃO */
.btn-about {
  display: inline-flex;   
  align-items: center;   
  justify-content: center;
  gap: 10px;              
  background-color: #44C2E0; 
  color: #ffffff;          
  padding: 8px 14px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 12px;
  transition: 0.3s;
}

.btn-about:hover {
  background:#01448b;
}


/* RESPONSIVO */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
  }

  .about-images {
    margin-top: 40px;
    height: 360px;
  }
}

/*produtos*/
.featured-products {
  background: #f4f5f7;
  padding: 80px 20px;
}

.featured-container {
  max-width: 900px;
  margin: auto;
}

.featured-container h2 {
  font-size: 20px;
  color: #01448b;
  margin-bottom: 20px;
}

/* CARD PRINCIPAL */
.featured-main {
  background: #fff;
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.308);
  margin-bottom: 60px;
  border-radius: 10px;
}

.featured-text h3 {
  color: #01448b;
  margin-bottom: 14px;
  font-size: 18px;
}

.featured-text p {
  color: #000000;
  margin-bottom: 15px;
  line-height: 1.6;
  font-size: 12px;
}

.featured-image img {
  max-width: 200px;
  margin-left: 50px;
}

/* GRID DE PRODUTOS */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.featured-grid-2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 12px;
}

/* CARD MENOR */
/* Estado inicial: invisível e um pouco abaixo */
.produto-animado {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

/* Estado final: visível e na posição correta */
.produto-animado.aparecer {
    opacity: 1;
    transform: translateY(0);
}

/* Delay opcional para os produtos não aparecerem todos juntos */
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }
.delay-4 { transition-delay: 0.7s; }
.delay-5 { transition-delay: 0.8s; }
.delay-6 { transition-delay: 0.9s; }


.product-card {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.308);
  text-align: left;
}

.product-card img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 10px;
}

.product-card h4 {
  color: #01448b;
  margin-bottom: 10px;
  font-size: 14px;
}

.product-card p {
  color: #000000;
  font-size: 11px;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* BOTÕES */
.btn-primary {
  background:  #44C2E0;
  color: #fff;
  padding: 8px 22px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  font-size: 12px;
  display: inline-flex;   
  align-items: center;   
  justify-content: center;
  gap: 10px;  
}

.btn-primary:hover {
  background:#01448b;
}

.btn-secondary { 
  background:  #44C2E0;
  color: #fff;
  padding: 8px 22px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  font-size: 12px;
}

.btn-secondary:hover {
  background: #01448b;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .featured-main {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .featured-image img {
    margin: auto;
  }

  .featured-grid {
    grid-template-columns: 1fr;
  }
}



/* ESTILIZAÇÃO DA SEÇÃO DE ORÇAMENTO */
.cta-budget {
  background-image: url(img/fundoorcamento-2.png);
  background-size: 80px 80px;
  padding: 60px 20px;
  color: #ffffff;
  background-repeat: no-repeat;
  background-size: cover; 
  background-position: center;
}

.cta-budget-container {
  max-width: 850px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.cta-budget-text h2 {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.cta-budget-text p {
  font-size: 14px;
  margin-bottom: 5px;
  color: white;
}

.cta-budget-text strong {
  font-size: 14px;
  display: block;
}

.btn-orcamento {
    background-color:#44C2E0;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-orcamento:hover{
  background-color: transparent;
  color:#44C2E0;
  border-style: solid;
  border-width: 1px;
  transform: translateY(-3px);
}

/* Responsividade para celulares */
@media (max-width: 768px) {
  .cta-budget-container {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-budget-text h2 {
    font-size: 26px;
  }
}

/* --- diferenciais --- */
.diferenciais-new {
    padding: 80px 20px;
    background-color: #ffffff;
    text-align: center; /* Centraliza tudo */
}

.container-new {
    max-width: 900px;
    margin: auto;
}

.header-diferenciais {
  margin-bottom: 60px;
  text-align: center; 
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mini-logo {
    width: 35px;
    margin-bottom: 10px;
}

.tagline {
  color: #44C2E0; 
  font-size: 14px;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-diferenciais h2 {
    color:#01448b; 
    font-size: 24px;
    font-weight: bold;
}

/* Grid de Colunas */
.grid-diferenciais-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Cards Individuais */
.card-diferencial {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-container-img {
    width: 49px;
}

.card-diferencial h3 {
    color: #01448b;
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 15px;
    font-weight: bold;
}

.card-diferencial p {
    color: #000000;
    font-size: 12px;
    line-height: 1.6;
    max-width: 220px;
    text-align: center;
}

/* Responsividade */
@media (max-width: 900px) {
    .grid-diferenciais-new {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* --- SUSTENTABILIDADE --- */
.sustentabilidade {
    background-image: url(img/sustentabilidade-Inpack.png); 
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.overlay-sustentabilidade {
    width: 100%;
    height: 100%;
    padding: 50px 20px;
}

.container-sustentabilidade {
    max-width: 900px;
    margin: auto;
}

.sustentabilidade h2 {
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
}

.sustentabilidade p {
    color: #fff;
    font-size: 14px;
    max-width: 500px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-orcamento-sustentavel {
    background-color:#44C2E0;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-orcamento-sustentavel:hover{
  background-color: transparent;
  color: #44C2E0;
  border-style: solid;
  border-width: 1px;
  transform: translateY(-3px);
}

/* --- atendimento --- */
.atendimento-nacional {
    padding: 80px 20px;
    background-color: #ffffff;
    text-align: center; /* Centraliza o título e o botão */
}

.titulo-atendimento {
    color: #01448b;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 50px;
}

.grid-cidades{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 600px;
    margin: 0 auto 50px auto;
    text-align: left; /* Mantém a lista alinhada à esquerda */
}

.lista-cidades-icon {
    list-style: none;
    padding: 0;
}

.lista-cidades-icon li {
    font-size: 12px;
    color: #000000;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.lista-cidades-icon li:hover{
  color: #38b6e6;
}

/* Ícone de seta azul claro */
.seta-azul {
    width: 18px;
    height: 18px;
    background-color: #44C2E0;
    border-radius: 80%;
    margin-right: 15px;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
}

/* Cria o desenho da seta interna usando bordas */
.seta-azul::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    border-top: 2px solid white;
    border-right: 2px solid white;
    transform: rotate(45deg);
    top: 7px;
    left: 6px;
}

/* Botão centralizado estilo CTA */
.cta-atendimento-central {
    display: flex;
    justify-content: center;
}

.btn-whatsapp-full {
    background-color:#44C2E0;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 12px;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(77, 195, 224, 0.3);
}

.btn-whatsapp-full:hover {
    background-color:#01448b;
    transform: translateY(-2px);
}

/* Responsividade */
@media (max-width: 768px) {
    .grid-cidades-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .titulo-atendimento {
        font-size: 26px;
    }
}

@media (max-width: 500px) {
    .grid-cidades-v2 {
        grid-template-columns: 1fr;
    }
    .btn-whatsapp-full {
        font-size: 16px;
        padding: 15px 20px;
    }
}

/* --- Parte Final --- */
.footer-inpack {
    background-color: #ffffff;
    padding: 30px 10px;
    color: #01448b;
}

.container-footer {
    max-width: 900px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.footer-logo {
    width: 180px;
    margin-bottom: 20px;
}

.footer-col h3 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
}

.textoFooter{
  font-size: 12px;
  padding: 2px;
  color: #000000;
}

.footer-menu, .footer-contato {
    list-style: none;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 5px;
    position: relative;
    padding-left: 20px;
}

.footer-menu li a:hover{
  color: #38b6e6;
}

.footer-contato li:hover{
  color: #38b6e6;
}

.info-item p:hover{
  color: #38b6e6;
}

.footer-menu li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-image: url('img/seta.png'); 
    background-size: contain;
    background-repeat: no-repeat;
    width: 15px; 
    height: 15px;
    border: none;
    border-radius: 0;
}

.footer-menu a {
    text-decoration: none;
    color: #000000;
    font-size: 12px;
}

.footer-contato li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 12px;
    color: #000000;
}

.footer-contato i, .info-item i {
    color: #44C2E0; /* Ícones em azul claro */
    font-size: 16px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a:hover{
   background-color:#01448b;
    transform: translateY(-2px);
}

.social-icons a {
    background-color: #44C2E0;
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    font-size: 14px;
    line-height: 1.5;
}

/* Responsividade */
@media (max-width: 992px) {
    .container-footer {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .container-footer {
        grid-template-columns: 1fr;
    }
}

/* footer */
.footer-bottom {
  background-color: #f5f5f5; /* Cor cinza claro da imagem */
  color: #000000;
  padding: 15px 0;
  font-size: 10px;
}

.footer-bottom a{
  color: #000000;
  text-decoration: none;
}

.container-bottom {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between; /* Texto na esquerda e direita */
  padding: 0 20px;
}

/* =====================================================
   AJUSTES FINAIS DE RESPONSIVIDADE
   (SEM ALTERAR ESTILOS BASE)
===================================================== */

/* ---------- TABLET (até 1024px) ---------- */
@media (max-width: 1024px) {

  .nav-container {
    padding: 12px 16px;
  }

  .nav-menu {
    gap: 20px;
  }

  .video-floating-container {
    width: 260px;
  }

  .featured-grid,
  .featured-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-diferenciais-new {
    gap: 30px;
  }
}

/* ---------- MOBILE (até 768px) ---------- */
@media (max-width: 768px) {

  /* NAVBAR */
  .nav-menu {
    top: 65px;
  }

  .logo img {
    height: 34px;
  }

  /* VÍDEO FLUTUANTE */
  .video-floating-container {
    width: 230px;
    bottom: 15px;
    left: 15px;
  }

  /* ABOUT */
  .about {
    padding: 40px 15px;
  }

  .img-losangos {
    width: 100%;
    height: auto;
  }

  /* PRODUTOS */
  .featured-main {
    padding: 25px;
  }

  .featured-grid,
  .featured-grid-2 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .cta-budget {
    padding: 40px 15px;
  }

  .cta-budget-text h2 {
    font-size: 22px;
  }

  /* DIFERENCIAIS */
  .header-diferenciais h2 {
    font-size: 22px;
  }

  /* ATENDIMENTO */
  .grid-cidades {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }

  .titulo-atendimento {
    font-size: 22px;
  }

  /* FOOTER BOTTOM */
  .container-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
  }
}

/* ---------- CELULARES PEQUENOS (até 480px) ---------- */
@media (max-width: 480px) {

  /* BOTÕES */
  .btn-orcamento,
  .btn-orcamento-estilo,
  .btn-whatsapp-full,
  .btn-primary,
  .btn-secondary {
    font-size: 10px;
    padding: 8px 14px;
  }

  /* TEXTOS */
  h2 {
    font-size: 18px;
  }

  p {
    font-size: 11px;
  }

  /* ATENDIMENTO */
  .grid-cidades {
    grid-template-columns: 1fr;
  }

  /* FOOTER */
  .footer-logo {
    width: 140px;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-bottom {
    font-size: 9px;
  }
}
