* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  /* garante empilhamento vertical */
  min-height: 100vh;
  /* ocupa 100% da altura da tela */
  overflow-x: hidden;
}

.divtudo {
  flex: 1;
  /* ocupa todo o espaço disponível antes do rodapé */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  background: #ffffff;
}


.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  width: 100%;
  height: auto;
  /* remove altura fixa */
}

.container-conteudo {
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  padding: 0 20px;
  max-width: 1400px;
}



.box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 15px;
  max-width: 300px;
  text-align: center;
  transition: transform 0.3s;
}

.box:hover {
  transform: translateY(-5px);
}

.box img {
  width: 100%;
  height: 200px;
  border-radius: 12px 12px 0 0;
}

.box h2 {
  margin: 10px 0 5px;
  font-size: 1.3rem;
  color: #333;
}

.box h3 {
  margin: 0;
  font-size: 1rem;
  color: #777;
}

.box p {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.4;
}

/* Responsividade */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: center;
  }
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  width: auto;
  height: auto;
}



/* Menu superior fixo no topo */



/* Logomarca */
.logo {
  position: absolute;
  left: 20px;
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  width: auto;
  margin-right: 10px;
}

/* Logomarca acima do menu */
.logo-topo {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: radial-gradient(rgb(173, 0, 0), #860303);
  padding: 30px 0;
  width: 100%;
  height: 190px;
  text-align: center;
}

.logo-topo img {
  height: 120px;
  width: auto;
}

/* Reposiciona a search box à direita */
.menu-superior {
  width: 100%;
  color: #000;
  position: fixed;
  top: 170px;
  /* abaixo da logomarca */
  left: 0;
  right: 0;
  height: 60px;
  background-color: #ad0202;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

/* Container centralizado */
.menu-superior-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Agrupamento do menu e imagens */
.nav-imagens-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Menu */
.menu-superior nav {
  display: flex;
  gap: 30px;
}

.menu-superior nav a {
  color: white;
  text-decoration: none;
  height: 60px;
  line-height: 60px;
  padding: 0 20px;
  display: inline-block;
  min-width: 120px;
  text-align: center;
  transition: background-color 1s ease, color 0.3s ease;
}

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

/* Imagens alinhadas com o menu */
/* Imagens alinhadas com o menu */
.imagens {
  display: flex;
  align-items: center;

  height: 50px;
  /* Garante altura igual ao menu */
}

.tudo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  background-color: #000;
  margin-top: 20px;
  flex: wrap;
  padding: 20px;
}

.imagens img {
  height: 40px;
  max-height: 100%;
  width: 60px;
  object-fit: contain;
  display: block;
  margin-left: 10px;
}

imagem-link {
  transition: transform 1s ease;
}

.imagem-link:hover {
  transform: scale(1.1);
  transition: 1s;
}

/* Área de busca na direita */
.search-box {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 4px;
  padding: 15px 10px;
  gap: 100px;
  margin-left: 115px;
}

.search-box input {
  border: none;
  outline: none;
  padding: 5px;
  font-size: 14px;
}

.search-box button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: #ff0000;
}

.secao-promocional {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 70px;
  padding: 15px;
  margin-top: 240px;
  background-color: #111;
  color: #fff;
  border-radius: 10px;
  text-align: center;
  width: 100%;
  max-width: 1410px;
  margin-left: auto;
  margin-right: 270px;
  flex-wrap: wrap;
  z-index: 100;
  position: relative;
}

.texto-promocional {
  flex: 1 1 400px;
  max-width: 600px;
  padding: 10px;
  margin-left: 80px;
}

.texto-promocional h1 {
  font-size: 33px;
  color: #ffe600;
  margin-bottom: 40px;
}

.texto-promocional p {
  font-size: 18px;
  margin-bottom: 40px;
}

.botao-vermelho {
  background-color: #d60505;
  color: white;
  padding: 16px 25px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.botao-vermelho:hover {
  background-color: #a40000;
}


.imagem-promocional {
  flex: 1 1 300px;
  text-align: center;
}

.imagem-promocional img {
  max-width: 85%;
  margin-left: 82px;
  height: auto;
  border-radius: 10px;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 0, 0, 0.8);
  /* escurece o fundo */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1999;
}

.modal-box {
  width: 400px;
  height: 390px;
  background-color: #000000;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  color: white;
  text-align: center;
}

.modal-title {
  color: #dd0303;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 45px;
}

.modal-title p {
  color: #ffffff;
  font-size: 14px;
  margin-top: 40px;
}

.modal-title-sub {
  font-style: italic;
  color: #ffffff;
  font-size: 14px;
  margin-top: 10px;
}

.close-button {
  position: absolute;
  top: 10px;
  right: 15px;
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  padding: 5px 10px;
  border-radius: 4px;
}

.close-button:hover {
  background-color: rgb(255, 0, 0);
}

.grid-cards {
  width: 1200px;
  height: 1300px;
  display: flex;
  flex-wrap: wrap;
  justify-items: center;

  display: grid;
  grid-template-columns: repeat(4, 4fr);
  gap: 10px;
  padding: 10px 10px;
  margin-left: 180px;
  /* mantém compatibilidade com menu lateral */
  margin-top: -30px;
  max-width: 1200px;
  background-color: #f4f4f4;
  border-radius: 10px;
}

.card {
  width: 280px;
  height: 420px;
  background-color: white;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-imagem img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.card h2 {
  font-size: 22px;
  color: #d60505;
  margin-bottom: 10px;
  margin-top: 25px;
}

.card h4 {
  font-size: 16px;
  color: #333;
  margin-bottom: 15px;
}

.card p {
  font-size: 14px;
  color: #666;
  flex-grow: 1;
}

.card a {
  margin-top: 15px;
  font-weight: bold;
  color: #d60505;
  text-decoration: none;
  text-align: center;
}

.card a:hover {
  text-decoration: underline;
}

.menu-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 1200px;
  max-width: 1200px;
  margin-top: 0px;
  margin-right: auto;
  margin-left: 440px;
  /* mantem compatibilidade com menu lateral */
  padding: 0 10px;
  gap: 20px;
  z-index: 1000;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.menu-button {
  flex: 1 1 calc(25% - 20px);
  padding: 15px;
  background-color: #3498db;
  color: white;
  text-align: center;
  cursor: pointer;
  transition: background 0.3s;
  border-radius: 8px;
}

.menu-button:hover {
  background-color: #2980b9;
}

.conteudo {
  max-width: 1180px;
  margin-left: 440px;
  padding: 20px;
  background: #f1f1f1;
  border: 1px solid #ccc;
  display: none;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.conteudo.ativo {
  display: block;
  opacity: 1;
  transform: translateY(0);
}





#formMsg {
  margin-top: 10px;
  font-size: 0.9em;
  color: #0f0;
}



.paginacao {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 20px 0;
}

.paginacao button {
  padding: 6px 12px;
  background-color: #d60505;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

.paginacao button:disabled {
  background-color: #aaa;
  cursor: not-allowed;
}

.paginacao button.ativo {
  background-color: #333;
  font-weight: bold;
}


.textosab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px;
  margin-bottom: -40px;
  /* ajuda na responsividade */
}

.textosab img {
  width: 580px;
  height: auto;
  border-radius: 10px;
  flex-shrink: 0;
}

.textos {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  width: auto;
}

.textotitulo h1 {
  margin: 0;
  width: 850px;
  color: rgb(153, 4, 4);
  font-size: 30px;
  padding-bottom: 10px;

}

.bloco {
  margin-bottom: 15px;
}

.bloco h2 {
  margin: 0;
  font-size: 25px;
  color: #3f3f3f;
}

.bloco p {
  width: 600px;
  text-decoration: none;
  margin: 2px 0 0;
  color: #666;
  font-size: 14px;
}

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

  .textosab img {
    width: 100%;
    max-width: 350px;
    /* limita a largura da imagem */
  }

  .textos {
    width: 350px;
  }

  .textotitulo h1 {
    width: 350px;
    padding-bottom: 20px;
  }

  .bloco p {
    width: 100%;
  }
}





/* Botão Hambúrguer */
.hamburger {
  display: none;
  font-size: 30px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

/* Responsivo para telas menores */
@media (max-width: 768px) {
  .nav-imagens-wrapper {
    display: none;
    flex-direction: column;
    background-color: #ad0202;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 10px 0;
  }

  .nav-imagens-wrapper.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .menu-superior-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .menu-superior nav {
    flex-direction: column;
    gap: 10px;
  }

  .imagens {
    justify-content: center;
  }

  .search-box {
    gap: 100px;
    margin-left: 60px;
    /* Esconde a barra de busca em telas pequenas, se quiser manter visível, remova */
  }
}

@media (max-width: 1024px) {
  .secao-promocional {
    flex-direction: column;
    gap: 40px;
    padding: 10px 20px;
    margin-top: 240px;
    position: relative;
    z-index: 700;
  }

  .texto-promocional h1 {
    font-size: 28px;
  }

  .texto-promocional p {
    font-size: 16px;
  }

  .botao-vermelho {
    font-size: 16px;
    padding: 14px 20px;
  }

  .imagem-promocional img {
    padding-top: 40px;
    max-width: 400px;
    margin-top: -190px;
  }
}

@media (max-width: 700px) {
  .secao-promocional {
    position: relative;
    z-index: 100;
    height: 760px;
    padding: 20px;


  }

  .texto-promocional {
    position: relative;
    z-index: 100;
    margin-right: 70px;
    max-width: 100%;
  }

  .texto-promocional h1 {
    font-size: 24px;
  }

  .texto-promocional p {
    font-size: 15px;
  }

  .botao-vermelho {
    font-size: 14px;
    padding: 12px 18px;
    margin: 0 auto;
  }

  .imagem-promocional img {
    position: re;
    z-index: 10;
    max-width: 100px;
    height: auto;
    margin-top: 400px;
    margin-left: 0;

  }
}


/* Estilo padrão do botão hamburguer */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  gap: 5px;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background-color: white;
  border-radius: 2px;
  transition: 0.4s;
}

/* Transforma em "X" quando ativo */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
}


@media (max-width: 1024px) {
  .container-conteudo {
    flex-direction: column;
  }

  .menu-lateral {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 20px auto 0;
    padding: 10px 0;
    background-color: #ffffff;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  }

  .menu-lateral a {
    padding: 10px 20px;
    font-size: 15px;
    color: #333;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
  }

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

  .grid-cards {
    margin-left: 0;
    width: 100%;
    padding: 20px 0;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

@media (max-width: 600px) {
  .menu-lateral {

    margin-left: -222px;
    flex-direction: row;
    gap: 10px;
    padding: 10px;
  }

  .menu-lateral a {
    padding: 8px 15px;
    font-size: 14px;
    width: 100%;
    text-align: center;
  }

  .grid-cards {
    height: auto;
    width: 100%;
    padding: 20px 0;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}



/* RODAPÉ RESPONSIVO */
.rodape {
  background-color: #222;
  color: #fff;
  padding: 40px 0 0;
  margin-top: 40px;
  width: 100%;
}

.rodape-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.rodape-coluna {
  flex: 1;
  min-width: 200px;
  margin-bottom: 20px;
}

.rodape-coluna h3 {
  color: #d60505;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.rodape-coluna p,
.rodape-coluna a {
  color: #ccc;
  margin: 5px 0;
  display: block;
  text-decoration: none;
}

.rodape-coluna a:hover {
  color: #fff;
}

.rodape-redes {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.rodape-redes a {
  display: inline-block;
  transition: transform 0.3s ease;
  will-change: transform;
  /* Otimização para animação */
}

.rodape-redes a:hover {
  transform: translateY(-3px) scale(1.15);
}

.rodape-redes img {
  width: 50px;
  height: auto;
  filter: brightness(0.8);
  transition: all 0.3s ease;
}

.rodape-redes a:hover img {
  filter: brightness(1);
}

.rodape-copyright {
  background-color: #111;
  padding: 15px 0;
  text-align: center;
  margin-top: 30px;
}

.rodape-copyright p {
  margin: 0;
  color: #ffffff;
  font-size: 0.9rem;
}

.rodape-copyright a {
  color: #ffffff;
  text-decoration: none;
}


.rodape-copyright a:hover {
  color: #e20000;
  transition: 1s;
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
  .rodape-container {
    flex-direction: column;
    gap: 20px;
  }

  .rodape-coluna {
    min-width: 100%;
    text-align: center;
  }

  .rodape-redes {
    justify-content: center;
  }
}




/* WhatsApp Container */
.whatsapp-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  align-items: flex-end;
  gap: 15px;
  z-index: 1000;
  transition: all 0.3s ease;
}

/* Mensagem do WhatsApp */
.whatsapp-message {
  background-color: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  max-width: 200px;
  animation: tremer 2s infinite;
}

.whatsapp-message p {
  margin: 0;
  color: #333;
  font-size: 14px;
  font-weight: 500;
}

/* Botão Fechar */
.close-whatsapp {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: #ff4444;
  color: white;
  border: none;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: all 0.2s;
}

.close-whatsapp:hover {
  background-color: #cc0000;
  transform: scale(1.1);
}

/* Ícone do WhatsApp */
.whatsapp-float {
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.whatsapp-float img {
  width: 70px;
  height: 70px;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  transform: scale(1.1);
}

/* Animação */
@keyframes tremer {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  25% {
    transform: translateY(-3px) rotate(3deg);
  }

  50% {
    transform: translateY(0) rotate(0deg);
  }

  75% {
    transform: translateY(-2px) rotate(-2deg);
  }
}

/* Responsivo */
@media (max-width: 768px) {
  .whatsapp-container {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
  }

  .whatsapp-float img {
    width: 55px;
    height: 55px;
  }

  .whatsapp-message {
    max-width: 200px;
    padding: 10px 15px;
  }
}


/* Estilo para Dropdown */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: rgb(202, 11, 11);
  min-width: 800px;
  height: 400px;
  z-index: 999;
  border-radius: 0px 0px 10px 10px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  top: 60px;
}

.dropdown-content a {
  color: #000;
  padding: 10px 15px;
  display: block;
  text-align: left;
  text-decoration: none;
}

.dropdown-content a:hover {
  background-color: #ad0202;
  color: #fff;
  border-radius: 4px;
}

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

/* Dropdown responsivo */
@media (max-width: 768px) {
  .dropdown-content {
    position: relative;
    top: 0;
    box-shadow: none;
    background-color: #ad0202;
  }

  .dropdown-content a {
    color: white;
    padding: 10px 20px;
  }

  .dropdown-content a:hover {
    background-color: #fff;
    color: #000;
  }
}

/* --- SEÇÃO 1 --- */
.sobrenos {
  border-radius: 10px;
  background-color: #f8f7f7;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 50px;
  max-width: 1200px;
  margin: auto;
  margin-top: 200px;
  gap: 40px;
  animation: fadeIn 1.5s ease-in;
}

.sobrenos-imagem {
  flex: 1;
  max-width: 500px;
}

.sobrenos-imagem img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.sobrenos-imagem img:hover {
  transform: scale(1.05);
}

.sobrenos-texto {
  justify-content: center;
  flex: 1.5;
}

.sobrenos-texto h1 {
  font-size: 2.8rem;
  color: #222;
  margin-bottom: 20px;
}

.sobrenos-texto p {
  font-style: italic;
  font-size: 1rem;
  color: #555;
  margin-bottom: 15px;
}

/* --- SEÇÃO 2 --- */
.sobrenoss {
  border-radius: 10px;
  background-color: #f8f7f7;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  padding: 50px;
  max-width: 1200px;
  margin: auto;
  margin-top: 20px;
  gap: 40px;
  animation: fadeIn 1.5s ease-in;
}

.sobrenoss-imagem {
  flex: 1;
  max-width: 500px;
}

.sobrenoss-imagem img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.sobrenoss-imagem img:hover {
  transform: scale(1.05);
}

.sobrenoss-texto {
  flex: 1.5;
}

.sobrenoss-texto h1 {
  font-size: 2.8rem;
  color: #222;
  margin-bottom: 20px;
}

.sobrenoss-texto p {
  font-style: italic;
  font-size: 1rem;
  color: #555;
  margin-bottom: 15px;
}

/* --- RESPONSIVO PARA MOBILE --- */
@media (max-width: 768px) {

  .sobrenos,
  .sobrenoss {
    flex-direction: column;
    padding: 30px 20px;
    text-align: center;
  }

  .sobrenos-texto h1,
  .sobrenoss-texto h1 {
    font-size: 2.2rem;
  }

  .sobrenos-texto p,
  .sobrenoss-texto p {
    font-size: 1rem;
  }
}

/* --- ANIMAÇÃO --- */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}



.downprod {
  display: flex;
  flex-wrap: wrap;
  max-width: 900px;
  width: 95%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-top: 300px;
}

.downprod img {
  flex: 1 1 300px;
  max-width: 400px;
  width: 100%;
  height: auto;
  object-fit: contain;
  /* garante que não corte a imagem */
  display: block;
  margin: auto;
}

.content {
  flex: 1 1 400px;
  padding: 30px;
  text-align: left;
}

.content h1 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #222;
}

.content h2 {
  font-style: italic;
  font-size: 1rem;
  margin-bottom: 20px;
  color: #555;
  font-weight: normal;
}

.download-btn {
  display: inline-block;
  background: #28a745;
  color: #fff;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.2s ease;
  margin-top: 60px;
  width: 100%;
  text-align: center;
}

.download-btn:hover {
  background: #218838;
  transform: scale(1.05);
}

/* Responsividade */
@media (max-width: 768px) {
  .downprod {
    flex-direction: column;
    text-align: center;
  }

  .downprod img {
    max-width: 90%;
    /* centraliza sem cortar */
  }

  .content {
    padding: 20px;
    text-align: center;
  }

  .content h1 {
    font-size: 1.5rem;
  }

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

  .download-btn {
    width: 100%;
    padding: 16px;
  }
}


.layout {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: 60px;
  margin-top: 300px;
  padding: 20px;
}

/* Coluna esquerda */
.col-esquerda {
  flex: 1 1 400px;
}

.col-esquerda h1 {
  font-size: 32px;
  margin-bottom: 12px;
  color: #4a3f97;
}

.col-esquerda h2 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #555;
}

.col-esquerda p {
  font-size: 16px;
  line-height: 1.6;
  max-width: 500px;
  margin-bottom: 30px;
}

.telefone {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}

.redes-sociais {
  display: flex;
  gap: 20px;
  margin-bottom: 12px;
}

.redes-sociais img {
  width: 36px;
  height: 36px;
  cursor: pointer;
  transition: 0.3s;
}

.redes-sociais img:hover {
  transform: scale(1.1);
}

.texto-final {
  font-size: 14px;
  color: #666;
}

/* Coluna direita */
.col-direita {
  flex: 1 1 400px;
  text-align: center;
}

.mapa {
  width: 100%;
  height: 350px;
  border: 0;
  border-radius: 8px;
  margin-bottom: 15px;
}

.btn-mapa {
  display: inline-block;
  background: #990606;
  color: white;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 15px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-mapa:hover {
  background: #db0416;
}

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

  .col-esquerda,
  .col-direita {
    flex: 1 1 100%;
    max-width: 600px;
  }

  .col-esquerda p {
    margin: 0 auto 30px auto;
  }

  .redes-sociais {
    justify-content: center;
  }
}

.promo {
  background: #000;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: center;
  max-width: 1255px;
  width: 100%;
  margin: 5px auto;
  border-radius: 10px;
  overflow: hidden;
  padding: 40px;
  box-sizing: border-box;
  gap: 40px;
  margin-top: 255px;
}

.promo-text {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.promo-text.show {
  opacity: 1;
  transform: translateX(0);
}

.promo-text h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #ffffff;
}

.promo-text h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #aaa;
}

.promo-text p {
  font-style: italic;
  font-size: 1rem;
  margin-bottom: 25px;
  line-height: 1.6;
}

.promo-text .btn {
  background: #25d366;
  color: #fff;
  padding: 14px 28px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  box-sizing: border-box;
  min-width: 0;
  word-wrap: break-word;

}

.promo-text .btn i {
  font-size: 1.2rem;
}

.promo-text .btn:hover {
  background: #009b3e;
  transform: scale(1.05);
}

.promo-image {
  text-align: center;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.promo-image.show {
  opacity: 1;
  transform: translateX(0);
}

.promo-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

/* Tablets */
@media (max-width: 900px) {
  .promo {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 30px 20px;
    gap: 30px;
  }

  .promo-text h1 {
    font-size: 2rem;
  }

  .promo-text h2 {
    font-size: 1.3rem;
  }

  .promo-text p {
    font-size: 1rem;
  }
}

/* Celulares */
@media (max-width: 600px) {
  .promo {
    padding: 20px 15px;
    gap: 25px;
  }

  .promo-text h1 {
    font-size: 1.6rem;
  }

  .promo-text h2 {
    font-size: 1.1rem;
  }

  .promo-text p {
    font-size: 0.9rem;
  }

  .promo-text .btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 1rem;
  }
}