@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;
}

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

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

a {
  text-decoration: none;
}

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 */
}

/*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;
    }
}

/*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:#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;
  }
}

/*Banner Inicial*/

/* A seção ocupa toda a largura da tela */
.secao-produtos {
  width: 100%;
  padding: 20px 0; /* Espaçamento vertical entre as seções do site */
  background-color: #ffffff; /* Cor de fundo da seção (as laterais) */
}

/* O wrapper limita a largura e centraliza o conteúdo */
.banner-wrapper {
  max-width: 1200px; /* Largura padrão do seu site */
  margin: 0 auto;    /* Centraliza o bloco horizontalmente */
  padding: 0 20px;   /* Respiro lateral para telas de celular */
}

.banner-content {
  width: 100%;
  overflow: hidden;
  display: flex;
}

.banner-content img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Garante que a imagem preencha o espaço corretamente */
}

/* Parte Azul Inicial */
.cta-budget {
  background-image: url(img/fundoorcamento-2.png);
  background-size: 40px 40px;
  padding: 40px 20px;
  color: #ffffff;
  background-repeat: no-repeat;
  background-size: cover; 
  background-position: center;
}

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

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

.cta-budget-text p {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-bottom: 5px;
    color:#44C2E0;
}

.cta-budget-text a{
    color: #44C2E0;
    padding: 2px;
}

.cta-budget-text a:hover{
    color: white;
}


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

/*Filme Stretch mais Video*/

.inpack-section {
    padding: 60px 20px;
    color:#000000;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap; /* Para ser responsivo em telas menores */
    align-items: center;
    gap: 40px;
}

.content-column {
    flex: 1;
    min-width: 300px;
}

.cuboazul {
    width: 40px;
    margin-bottom: 10px;
}

h1 {
    font-size: 20px;
    color: #000;
    margin-bottom: 25px;
}

p {
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 12px;
}

.highlight {
    font-weight: bold;
    font-size: 12px;
}

.btn-whatsapp {
    background-color:#44C2E0; /* Cor azul celeste da imagem */
    color: #ffffff;            /* Texto em branco */
    padding: 8px 18px;       /* Espaçamento interno */
    border-radius: 5px;        /* 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-whatsapp:hover {
    background-color:  #004a99;
}

/* Coluna do Vídeo */
.video-column {
    flex: 1;
    min-width: 300px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

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

/*Frase*/
.frase-inpack{
    padding: 20px;
    color:#000000;
}

.frase-container{
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap; /* Para ser responsivo em telas menores */
    align-items: center;
    justify-content: center;
}

.frase-container p{
    font-size: 20px;
    font-weight: 600;
}

/*Informacoes Filme Stretch*/
.info-stretch-section {
    padding: 50px 0;
    color: #000000;
    line-height: 1.5;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.column {
    flex: 1;
    min-width: 300px;
}

h2 {
    font-size: 19px;
    font-weight: bold;
    margin-bottom: 15px;
}

h3 {
    font-size: 16px;
    font-weight: bold;
    margin-top: 25px;
    margin-bottom: 5px;
}

p {
    font-size: 12px;
    margin-bottom: 15px;
}

/* Estilização da Tabela */
.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.specs-table td {
    padding: 12px 15px;
    font-size: 12px;
    border-bottom: 1px solid #c7c7c7;
}

/* Coluna Azul da Tabela */
.specs-table td.label {
    background-color:#004a99; /* Azul escuro igual à imagem */
    color: white;
    font-weight: 500;
    width: 40%;
}

/* Efeito de linhas alternadas (zebra) na coluna da direita */
.specs-table tr:nth-child(even) td:not(.label) {
    background-color: #f2f2f2;
}

.specs-table tr:nth-child(odd) td:not(.label) {
    background-color: #ffffff;
}

/* Responsividade para telas pequenas */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/*Parte Solicitar os Valores*/
.cta-budget-2 {
  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-2 {
  max-width: 800px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.cta-budget-text-2 h2 {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}

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

.cta-budget-text-2 strong {
  font-size: 12px;
  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);
    white-space: nowrap; /* Força o texto a ficar em uma linha só */
}

.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-2 {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-budget-text-2 h2 {
    font-size: 26px;
  }
}

/*Vantagens*/
/* 1. Container Principal da Seção */
.vantagens-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.container-vantagens {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center; /* Alinha verticalmente o texto com a imagem */
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap; /* Garante que fique um embaixo do outro no celular */
}

/* 2. Coluna de Texto (Esquerda) */
.vantagens-text {
    flex: 1;
    min-width: 300px;
}

.vantagens-text h2 {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

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

/* Lista com Ícones de Check Azul */
.vantagens-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vantagens-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 20px;
    font-size: 12px;
    color: #000000;
    line-height: 1.4;
}

.vantagens-list li::before {
    content: '✔'; /* Ícone de check */
    position: absolute;
    left: 0;
    top: 0;
    color:#44C2E0; /* Azul piscina da Inpack */
    font-weight: bold;
    font-size: 14px;
}

/* 3. Coluna do Carrossel (Direita) */
.vantagens-carousel {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.carousel-wrapper {
    position: relative;
    width: 70%;
    max-width: 450px; /* Tamanho máximo da imagem */
    display: flex;
    align-items: center;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    border-radius: 10px; /* Bordas levemente arredondadas como na foto */
}

/* Slides e Imagens */
.slide {
    display: none; /* Escondido por padrão */
    width: 100%;
}

.slide.active {
    display: block; /* Mostra apenas o slide ativo */
}

.slide img {
    width: 100%;
    height: 30%;
    display: block;
    object-fit: contain;
}

/* 4. Botões de Navegação (Setas) */
.arrow-btn {
    background: none;
    border: none;
    color: #44C2E0;
    font-size: 25px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    padding: 10px;
    transition: color 0.3s, transform 0.2s;
    user-select: none;
}

.arrow-btn:hover {
    color: #38b0d1;
    transform: translateY(-50%) scale(1.1);
}

.prev {
    left: -50px; /* Posiciona a seta para fora da imagem à esquerda */
}

.next {
    right: -50px; /* Posiciona a seta para fora da imagem à direita */
}

/* 5. Animação de Transição Suave */
.slide.active {
    animation: fadeEffect 0.8s ease-in-out;
}

@keyframes fadeEffect {
    from { opacity: 0; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
}

/* 6. Responsividade (Celular) */
@media (max-width: 992px) {
    .container-vantagens {
        flex-direction: column;
        text-align: left;
    }
    
    .vantagens-carousel {
        width: 100%;
        margin-top: 40px;
    }

    .prev { left: 10px; color: #fff; text-shadow: 0 0 5px rgba(0,0,0,0.5); }
    .next { right: 10px; color: #fff; text-shadow: 0 0 5px rgba(0,0,0,0.5); }
}

/*Duvidas Frequentes*/
.faq-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.faq-container {
    max-width: 700px;
    margin: 0 auto;
}

.faq-section h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.faq-intro {
    font-size: 14px;
    color: #000000;
    margin-bottom: 40px;
    line-height: 1.5;
}

/* Estilo das Barras do Accordion */
.accordion-item {
    margin-bottom: 8px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.accordion-header {
    width: 100%;
    padding: 5px 10px;
    background-color:#004a99; /* Azul escuro da imagem */
    color: white;
    border: none;
    text-align: left;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background 0.3s;
}

.icon {
    margin-right: 15px;
    font-size: 20px;
    font-weight: normal;
}

.accordion-header:hover{
    color: #44C2E0;
}

.icon:hover{
    color: #44C2E0;
}

/* Conteúdo escondido */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    background-color: white;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    text-align: left;
}

.accordion-content p {
    padding: 5px 10px; /* Reduzi o padding vertical de 20px para 10px */
    margin: 0;
    line-height: 1.6;
    color: #000000;
    font-size: 12px;

}

/* Botão de rodapé */
.faq-footer {
    margin-top: 40px;
}

.btn-orcamento-faq {
    display: inline-flex;
    align-items: center;
    background-color:#44C2E0;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    gap: 10px;
}

.btn-orcamento-faq:hover{
    background-color: #01448b;
}

/* --- 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é 992px) ---------- */
@media (max-width: 992px) {

  /* Navbar */
  .nav-container {
    padding: 10px 15px;
  }

  .logo img {
    height: 35px;
  }

  /* Banner */
  .banner-wrapper {
    padding: 0 15px;
  }

  /* CTA */
  .cta-budget-container,
  .cta-budget-container-2 {
    gap: 20px;
  }

  /* Seções com container flex repetido */
  .container {
    gap: 30px;
  }

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

  /* Footer bottom */
  .container-bottom {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }
}

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

  /* Menu */
  .nav-menu {
    top: 60px;
  }

  .nav-menu li {
    padding: 12px 0;
  }

  /* Banner */
  .banner-content img {
    object-fit: contain;
  }

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

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

  /* Seções flex → coluna */
  .container,
  .cta-budget-container,
  .cta-budget-container-2,
  .container-vantagens {
    flex-direction: column;
    text-align: center;
  }

  .content-column,
  .video-column,
  .vantagens-text,
  .vantagens-carousel {
    min-width: 100%;
  }

  /* Frase */
  .frase-container p {
    font-size: 18px;
    text-align: center;
  }

  /* Carrossel vantagens */
  .carousel-wrapper {
    width: 100%;
  }

  .prev {
    left: 5px;
  }

  .next {
    right: 5px;
  }

  /* FAQ */
  .faq-section h2 {
    font-size: 22px;
  }

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

  .grid-cidades {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

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

  /* Logo */
  .logo img {
    height: 30px;
  }

  /* Botões */
  .btn-orcamento-estilo,
  .btn-orcamento,
  .btn-whatsapp,
  .btn-whatsapp-full,
  .btn-orcamento-faq {
    font-size: 11px;
    padding: 8px 14px;
  }

  /* Textos */
  h1 {
    font-size: 18px;
  }

  h2 {
    font-size: 18px;
  }

  p {
    font-size: 11px;
  }

  /* Tabela */
  .specs-table td {
    padding: 10px;
    font-size: 11px;
  }

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

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

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