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


/* 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: space-between;
  align-items: center;
  gap: 30px;
}

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

.cta-budget-text p {
  font-size: 12px;
  margin-bottom: 5px;
  color:#44C2E0;
}

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

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

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

.cta-budget-action img{
    width: 60px;
    height: 65px;
}

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

/* Quem somos */

.img-logo{
  width: 280px;
  height: 230px;
  margin-top: 10px;
}

.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: 30px;        
}

.about-text h2 {
  font-size: 25px;
  color: #000000;
  margin-bottom: 15px;
}

.about-text p {
  color: #000000;
  margin-bottom: 8px;
  font-size: 12px;
}

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


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

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


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

/* Uma nova opçao de filme stretch */

.img-logo-2{
  width: 550px;
  height: 550px;
  margin-top: 10px;
  border-radius: 10px;
  box-shadow: -15px 15px 10px #00000033;
}

.about-2 {
  padding: 60px 20px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-container-2 {
  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;        
}

.about-text-2 h2 {
  font-size: 18px;
  color: #000000;
  line-height: 1.4;
}

.about-text-2 p {
  color: #000000;
  margin-top: 8px;
  margin-bottom: 8px;
  font-size: 12px;
}

.about-text-2 strong {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
}


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

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

/*Missao e Valores*/
.mvv {
  max-width: 800px;
  margin: 80px auto;
  padding: 0 20px;
}

.mvv h2 {
  font-size:20px;
  font-weight: 700;
}

.mvv .subtitulo {
  color: #000000;
  margin-bottom: 30px;
  font-size: 14px;
}

.mvv-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.mvv-card {
  display: flex;
  gap: 25px;
  align-items: flex-start;
}

.mvv-card img {
  width: 90px;
  height: 90px;
  object-fit: contain;
}

.mvv-card h3 {
  font-size: 14px;
  color:#01448b;
}

.mvv-card p {
  color: #000000;
  line-height: 1.6;
  font-size: 12px;
}

.mvv-card ul {
  padding-left: 18px;
  color: #000000;
  font-size: 12px;
}

.mvv-card ul li {
  margin-bottom: 8px;
  line-height: 1.5;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .mvv-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .mvv-card ul {
    text-align: left;
  }
}

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

.container-footer {
    max-width: 900px;
    margin: auto;
    margin-top: 20px;
    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 EXTRAS DE RESPONSIVIDADE
   (SEM ALTERAR ESTILOS BASE)
====================================================== */

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

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

  .nav-menu {
    gap: 20px;
  }

  .cta-budget-container {
    max-width: 90%;
  }

  .about-container,
  .about-container-2 {
    gap: 40px;
  }

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

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

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

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

  .logo img {
    height: 34px;
  }

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

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

  .cta-budget-text p {
    font-size: 11px;
  }

  .cta-budget-action img {
    width: 50px;
    height: auto;
  }

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

  .img-logo {
    width: 220px;
    height: auto;
    margin: 0 auto;
  }

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

  /* Sustentabilidade */
  .sustentabilidade h2 {
    font-size: 20px;
  }

  .sustentabilidade p {
    font-size: 12px;
  }

  /* Nova opção de filme */
  .about-2 {
    padding: 40px 15px;
  }

  .img-logo-2 {
    width: 100%;
    height: auto;
    box-shadow: none;
  }

  .about-text-2 h2 {
    font-size: 16px;
    text-align: center;
  }

  .about-text-2 p,
  .about-text-2 strong {
    text-align: center;
  }

  /* 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-estilo,
  .btn-orcamento-sustentavel {
    font-size: 10px;
    padding: 8px 14px;
  }

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

  p {
    font-size: 11px;
  }

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

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

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