/* Geral */
:root {
  --main-color: #d92123;
  --primary-text-color: #fff;
  --secondary-text-color: #191919;
  --secondary-color: #868686;
  --tertiary-color: #eff3f4;
  --secondary-bg-color: #5c1011;
}

* {
  font-family: "Lato";
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none !important;
}

img {
  width: 100%;
}

input[type="submit"] {
  cursor: pointer;
}

i {
  background-color: var(--main-color);
  color: var(--primary-text-color);
  font-size: 2.5rem;
  padding: 2rem;
}

/* ---DEPOIMENTOS -  TÍTULO CENTRALIZADO --- */
/* --- SESSÃO PRINCIPAL --- */

/* --- CONFIGURAÇÃO DE ROLAGEM SUAVE --- */
html {
  scroll-behavior: smooth; /* Faz a página deslizar suavemente ao clicar no menu */
}

/* ======================================================= */
/* CORREÇÃO 1: SITE EM MINIATURA (TELA PEQUENA)            */
/* ======================================================= */
/* Isso impede que o menu lateral escondido aumente a largura
   da página, o que fazia o site parecer pequeno (zoom out). */
html,
body {
  overflow-x: hidden;
  width: 100%;
}

/* ======================================================= */
/* CORREÇÃO 2: TEXTO DO BANNER ATRÁS DO QUADRADO           */
/* ======================================================= */
/* O seletor correto para o seu HTML é ".banner", não ".carousel-item" */

.banner h2,
.banner p {
  position: relative !important; /* Obrigatório para funcionar */
  z-index: 100 !important; /* Número alto: Texto na frente */
  display: block;
}

/* Garante que o quadrado fique atrás */
.banner .square {
  position: absolute !important;
  z-index: 1 !important; /* Número baixo: Quadrado atrás */

  /* Garante que o quadrado não cubra links ou botões se houver */
  pointer-events: none;
}

/* --- SESSÃO PRINCIPAL --- */
#depoimentos-section {
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  padding: 60px 20px;

  /* Importante: Isso impede que o menu fixo cubra o título ao rolar */
  scroll-margin-top: 100px;
}

/* ... (Mantenha o .depoimento-container e .title-box iguais) ... */

/* --- TÍTULO AJUSTADO (LETRAS MAIS JUNTAS) --- */
.main-title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #333;
  margin: 0;
  line-height: 1;
  /* Remove espaçamentos extras entre elementos flexíveis */
  gap: 0;
}

.highlight-box {
  background-color: #f0f2f5;
  color: #d32f2f;

  /* CONFIGURAÇÃO DO QUADRADO DESLOCADO */
  padding-top: 10px;
  padding-bottom: 10px;

  /* Adiciona bastante espaço na esquerda (visual de deslocado) */
  padding-left: 20px;

  /* Remove quase todo o espaço da direita para a letra colar na próxima */
  padding-right: 1px;

  /* ALTERAÇÃO 2: Remove o espaço entre o quadrado "De" e o "poimentos" */
  margin-right: -1px;

  font-weight: bold;
  display: inline-block;
}

/* Container para limitar a largura e centralizar as setas perto do texto */
.depoimento-container {
  width: 100%;
  max-width: 800px; /* Impede que fique largo demais em monitores grandes */
  margin: 0 auto; /* Garante centralização do bloco */
  position: relative;
}

/* --- TÍTULO CENTRALIZADO --- */
.title-box {
  display: flex;
  justify-content: center; /* Centraliza o conjunto (Quadrado + Texto) */
  align-items: center;
  margin-bottom: 50px; /* Espaço entre o título e o depoimento */
}

/* --- CONTEÚDO DO SLIDE --- */
.carousel-item {
  text-align: center; /* Centraliza todo o texto dentro do slide */
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 40px; /* Respiro lateral para as setas não ficarem em cima do texto */
}

.depoimento-quote {
  font-style: italic;
  color: #b0b0b0;
  font-size: 1.3rem; /* Fonte um pouco maior */
  line-height: 1.6;
  margin-bottom: 30px;
}

.depoimento-author {
  color: #d32f2f;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

/* --- SETAS DE NAVEGAÇÃO --- */
.carousel-control-prev,
.carousel-control-next {
  width: 40px; /* Largura fixa para não ocupar a tela toda */
  height: 40px;
  background: transparent;
  top: 50%; /* Posiciona no meio da altura do slide */
  transform: translateY(-50%);
  opacity: 1; /* Sempre visível */
}

.carousel-control-prev {
  left: -20px;
} /* Ajuste fino da posição */
.carousel-control-next {
  right: -20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(0.4); /* Deixa a seta cinza escuro */
  width: 2rem;
  height: 2rem;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  filter: invert(0); /* Fica preto ao passar o mouse */
}

#header {
  min-height: 95vh;
  background-image: url("../img/main_banner4.png");
  background-size: cover;
  background-position: center;
  color: var(--primary-text-color);
  margin-bottom: 2rem;
  position: relative;
}

#header #navbar {
  position: relative;
  padding: 15px 20px;
  top: 0;
  right: 0;
  width: auto;
  background-color: transparent !important;
  box-shadow: none !important;
  z-index: 1020;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}
/*
.navbar-scrolled {
  background-color: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
}

.navbar-scrolled a {
  color: var(--primary-color) !important;
}*/

#inner-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#brand {
  background-color: var(--main-color);
  padding: 1rem;
}

#navbar {
  display: flex;
  gap: 4rem;
  text-transform: uppercase;
  margin-right: 2rem;
}

#navbar a {
  color: var(--primary-text-color) !important;
  font-weight: bold;
}

.banner.active {
  opacity: 1;
}

.banner {
  max-width: 50%;
  padding: 4rem;
  opacity: 0;
  position: absolute;
  transition: 0.8s;
}

.banner h2 {
  font-size: 4rem;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 2;
}

.banner p {
  font-size: 1.5rem;
}

.square {
  display: block;
  width: 150px;
  height: 150px;
  background-color: var(--main-color);
  position: absolute;
  z-index: 1;
  left: 20px;
  top: 40px;
}

.dots {
  display: flex;
  gap: 2rem;
  position: absolute;
  bottom: 3rem;
  left: 3rem;
}

.dot {
  width: 20px;
  height: 20px;
  background-color: var(--secondary-color);
}

.dot.active {
  background-color: var(--main-color);
}

.whatsapp-button {
  position: fixed;
  bottom: 20px; /* Ajuste a distância do botão da parte inferior */
  right: 20px; /* Ajuste a distância do botão da lateral direita */
  z-index: 999; /* Garante que o botão fique sobre outros elementos */
}

.whatsapp-button img {
  width: 100px; /* Ajuste o tamanho do ícone */
  height: 100px;
  border-radius: 50%;
}

/* Áreas de atuação */

.text-image-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.text-container {
  flex: 2 1 0;
  display: flex;
  gap: 2rem;
  flex-direction: column;
  justify-content: center;
  text-align: right;
}

.section-subtitle {
  text-transform: uppercase;
  font-weight: bold;
  color: var(--main-color);
}

.section-title {
  color: var(--secondary-text-color);
  font-size: 2rem;
}

.btn {
  padding: 0.6rem 1rem;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: bold;
  background-color: var(--main-color) !important;
  border-color: var(--primary-text-color) !important;
  color: var(--primary-text-color) !important;
  align-self: end;
}

.image-container {
  flex: 1 1 300px;
  position: relative;
}

.image-container i {
  position: absolute;
}

/* --- CONTAINER GERAL DOS CARDS --- */
/* --- CONTAINER GERAL DOS CARDS (SESSÃO 3) --- */
/* --- CONTAINER DOS CARDS --- */
#other-services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px; /* Espaço entre os cards */
  padding: 80px 2%; /* 2% de margem nas laterais da tela */
  width: 100%;
  max-width: 1600px; /* Permite que o site fique bem largo */
  margin: 0 auto;
}

/* --- ESTRUTURA DO CARD (Lógica Responsiva) --- */
.service {
  display: flex;
  flex-direction: column;
  background-color: #f4f6f8;
  position: relative;
  border-bottom: 4px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  /* --- REGRA PARA DESKTOP E NOTEBOOK (4 Cards) --- */
  /* Explicação: 25% da tela menos o espaço do gap (20px) */
  flex: 0 0 calc(25% - 20px);
  max-width: calc(25% - 20px);
}

/* Efeito Hover */
.service:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  border-bottom-color: #cf2e2e;
}

/* --- IMAGEM --- */
.image-wrapper {
  position: relative;
  width: 100%;
  height: 260px; /* Altura fixa para manter o padrão */
  overflow: hidden;
}

.service img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Ícone */
.icon-box {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #cf2e2e;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.8rem;
  z-index: 2;
}

/* --- TEXTOS --- */
.service-info {
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: left;
}

.service h4 {
  font-size: 1.3rem; /* Ajustado para caber em 4 colunas */
  text-transform: uppercase;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.3;
  font-weight: 400;
}

.service h4 b {
  font-weight: 900;
}

.service p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Botão Leia Mais */
.service-footer {
  margin-top: auto;
}

.read-more {
  color: #cf2e2e;
  font-weight: bold;
  text-decoration: none;
  font-size: 1rem;
}

/* ========================================= */
/*      RESPONSIVIDADE (MEDIA QUERIES)       */
/* ========================================= */

/* TABLETS (Telas entre 768px e 1200px) -> 2 Cards por linha */
@media (max-width: 1200px) {
  .service {
    /* 50% da tela menos o gap */
    flex: 0 0 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}

/* CELULARES (Telas menores que 768px) -> 1 Card por linha */
@media (max-width: 768px) {
  .service {
    /* 100% da tela */
    flex: 0 0 100%;
    max-width: 100%;
  }

  #other-services {
    padding: 40px 20px; /* Mais espaço lateral no celular */
  }
}

/* Sobre nós */
#about {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

#about-text {
  background-image: url("../img/pattern.png");
  background-size: cover;
  background-position: center;
  color: var(--primary-text-color);
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: 3rem 2rem;
  margin-bottom: 2rem;
}

#about-text .section-subtitle,
#about-text .section-title {
  color: var(--primary-text-color);
}

#about-text i {
  background-color: transparent;
}

.about-description {
  display: flex;
  align-items: center;
}

.about-description h4 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

#about-data {
  flex: 1 1 0;
  display: flex;
  flex-wrap: wrap;
  padding: 1rem;
}

#about-data .data {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  margin-top: -1px;
  margin-left: -1px;
}

#about-data .data:first-child {
  border-bottom: 1px solid var(--secondary-text-color);
  border-right: 1px solid var(--secondary-text-color);
}

#about-data .data:last-child {
  border-top: 1px solid var(--secondary-text-color);
  border-left: 1px solid var(--secondary-text-color);
}

#about-data .data i {
  background-color: transparent;
  color: var(--main-color);
  font-size: 4rem;
  padding: 0;
}

.data .number {
  font-size: 4rem;
  font-weight: 900;
}

.data .text {
  text-transform: uppercase;
}

/* DEPOIMENTOS 
.depoimentos .titulo::after {
  border-color: #fff;
}
.depoimentos img {
  width: 300px;
}
.depoimentos h4 {
  font-size: 1.2rem;
  font-weight: 600;
}

#team p i {
  background-color: transparent;
  padding: 0;
  img {
    width: 0px;
  }
  display: inline-block;
  flex-wrap: nowrap;
  color: var(--main-color);
}

#team span {
  color: var(--main-color);
}

#team {
  position: relative;
  margin-bottom: 2rem;
}

#team h2 {
  font-size: 3rem;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  margin-bottom: 2rem;
}

#team h2 span {
  color: var(--main-color);
}

#team .square {
  background-color: var(--tertiary-color);
  width: 100px;
  height: 100px;
  left: 41%;
  margin-left: -50px;
  top: -20px;
}

.employees {
  display: flex;
  gap: 1rem;
  padding: 2rem;
  text-align: center;
}

.employee-name {
  color: var(--main-color);
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0.5rem 0;
}*/

/* Contato */
/* --- SESSÃO DE CONTATO --- */
#contact {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  min-height: 600px;
  background-color: #fff;
  padding: 0;
}

/* Lado da Imagem */
.contact-image {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Lado do Formulário (Vermelho) */
.contact-form-container {
  flex: 1;
  min-width: 300px;
  background-color: #cf2e2e;
  padding: 80px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

/* Quadrado Branco com Ícone */
.contact-icon-box {
  position: absolute;
  top: 0;
  left: 0;
  background-color: transparent;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.contact-icon-box i {
  font-size: 3.5rem;
  color: #ffffff;
}

/* Título */
.contact-title {
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  font-size: 1.2rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* --- ESTILO DOS INPUTS E DO SELECT (NOVO) --- */
#whatsappForm input,
#whatsappForm textarea,
#whatsappForm select {
  /* Adicionado o select aqui */
  width: 100%;
  padding: 15px;
  margin-bottom: 15px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  background-color: #fff;
  outline: none;
  font-family: inherit;
  color: #555; /* Cor do texto digitado */
}

/* Estilo específico para o Select (opcional, para garantir a seta) */
#whatsappForm select {
  appearance: none; /* Remove estilo padrão do navegador */
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23cf2e2e%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 15px top 50%;
  background-size: 12px auto;
  cursor: pointer;
}

/* Agrupamento de Nome e Email na mesma linha */
.input-group-row {
  display: flex;
  gap: 15px;
}

.input-group-row input {
  width: 50%;
}

/* Botão Enviar */
.btn-contact {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 10px 40px;
  font-size: 1.1rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  width: fit-content;
  margin-top: 10px;
  border-radius: 4px;
}

.btn-contact:hover {
  background-color: #fff;
  color: #cf2e2e;
  font-weight: bold;
}

/* --- MENSAGEM DE SUCESSO --- */
.mensagem-sucesso {
  visibility: hidden; /* Começa invisível */
  min-width: 300px;
  background-color: #28a745; /* Cor verde sucesso */
  color: #fff; /* Texto branco */
  text-align: center;
  border-radius: 50px; /* Bordas bem redondinhas */
  padding: 16px;
  position: fixed; /* Fica fixo na tela */
  z-index: 9999; /* Fica por cima de tudo */
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%); /* Centraliza perfeitamente */
  font-size: 1.1rem;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 0.5s ease-in-out, bottom 0.5s ease-in-out;
}

/* Classe que será adicionada pelo Javascript para mostrar a mensagem */
.mensagem-sucesso.show {
  visibility: visible;
  opacity: 1;
  bottom: 50px; /* Efeito de subir um pouquinho */
}

/* Ajuste para Mobile */
@media (max-width: 768px) {
  #contact {
    flex-direction: column;
  }
  .contact-image {
    height: 300px;
  }
  .input-group-row {
    flex-direction: column;
    gap: 0;
  }
  .input-group-row input {
    width: 100%;
  }
}

/*#contact {
  background-color: var(--main-color);
  gap: 0;
  padding-bottom: 5rem;
}

#contact-information {
  position: relative;
  text-align: center;
  padding: 3rem;
  flex: 1 1 0;
}

#contact-information .section-subtitle {
  color: var(--primary-text-color);
}

#contact-information i {
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--primary-text-color);
  color: var(--main-color);
}

#contact-information form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#contact-information .form-control {
  display: flex;
  gap: 1rem;
}

#contact-information input,
#contact-information textarea {
  flex: 0.5;
  padding: 1rem;
  border: none !important;
}

#contact-information .btn {
  align-self: start;
  border: 2px solid var(--primary-text-color);
  font-size: 1.2rem;
  transition: 0.4s;
}

#contact-information .btn:hover {
  background-color: var(--primary-text-color);
  color: var(--main-color);
}*/

/* Rodapé */
#footer {
  color: var(--primary-text-color);
  background-color: var(--secondary-bg-color);
  display: flex;
  justify-content: space-between;
  padding: 3rem 5% 5rem;
  width: 100%;
  box-sizing: border-box;
}

#footer i {
  font-size: 1rem;
  padding: 0.3rem;
}

#footer a {
  color: var(--primary-text-color);
}

#footer a:hover {
  color: var(--main-color);
}

.contact-info,
.links-container {
  width: 20%;
}

.footer-brand {
  margin-bottom: 2rem;
}

.footer-brand h2 {
  background-color: var(--main-color);
  margin-bottom: 0.5rem;
  padding: 1rem;
}

.contact-info p {
  margin-bottom: 1rem;
}

.contact-info p i {
  background-color: transparent;
  padding: 0;
  color: var(--main-color);
}

.social-networks p {
  margin-bottom: 1rem;
}

.networks {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}

#footer .networks i {
  padding: 1rem;
}

.links-container h4 {
  text-transform: uppercase;
  margin-bottom: 3rem;
}

.links-container nav {
  display: flex;
  flex-direction: column;
}

.links-container nav a {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--secondary-color);
  text-decoration: none;
}

.phone-number {
  display: flex;
  border: 1px solid var(--main-color);
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.phone-info {
  color: var(--secondary-color);
}

/* Mobile navbar */
#menu,
#close-menu {
  font-size: 2rem;
  padding: 1rem;
  display: none;
}

#close-menu {
  position: absolute;
  top: 0;
  right: 0;
}

#mobile-navbar {
  position: fixed;
  top: 0;
  left: 100%;
  height: 100vh;
  width: 100%;
  background-color: #000000;
  display: flex;
  flex-direction: column;
  padding: 4rem 2rem;
  transition: 0.4s;
  z-index: 99999 !important;
}

#mobile-navbar.menu-active {
  left: 0;
}

#mobile-navbar a {
  color: var(--primary-text-color);
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--main-color);
}

/* Responsivo */
@media (max-width: 450px) {
  /* Geral */
  body {
    overflow-x: hidden;
  }

  i {
    padding: 1.5rem;
    font-size: 2rem;
  }

  /* navbar */
  #navbar {
    display: none;
  }

  #menu,
  #close-menu {
    display: block;
  }

  .banner {
    max-width: 100%;
    padding: 4rem 2rem;
  }

  .banner h2 {
    font-size: 3rem;
  }

  .banner p {
    font-size: 1rem;
  }

  /* Áreas de atuação */
  .btn {
    align-self: initial;
  }

  .image-container {
    flex: 1 1 100%;
  }

  #other-services {
    flex-wrap: wrap;
  }

  .card {
    /* Remove as bordas */
    border: none !important;

    /* Remove as pontas arredondadas (border-radius) */
    border-radius: 0 !important;

    /* Importante: Remove a sombra suave que o Bootstrap pode aplicar
       e que pode dar a ilusão de borda/distinção */
    box-shadow: none !important;
  }

  .service-card {
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  /* Sobre nós */
  #about {
    gap: 0;
  }

  #about-text,
  #about-data {
    flex: 1 1 100%;
  }

  .about-description {
    gap: 1rem;
  }

  .about-description i {
    padding: 0;
    min-width: 40px;
  }

  #about #about-data .data {
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--secondary-text-color);
  }

  /* Depoimentos 
  .text-container {
    text-align: center;
    padding: 2rem;
  }

  /* Colaboradores 
  #team {
    margin-top: 2rem;
  }

  #team h2 {
    font-size: 2.5rem;
  }

  .employees {
    flex-wrap: wrap;
  }

  /* Contato */
  #contact {
    padding-bottom: 0 !important;
  }

  #contact-information {
    padding: 7rem 1rem;
  }

  #contact-information .form-control {
    flex-direction: column;
  }

  #contact-information .btn {
    align-self: auto;
  }

  #contact,
  #footer,
  #contact > div,
  #footer > div {
    margin: 0;
    padding: 0;
  }

  /* Rodapé */
  #footer {
    margin-top: 0 !important;
    padding-top: 0 !important;
    flex-wrap: wrap;
  }

  #footer i {
    font-size: 2rem;
    padding: 1rem;
  }

  .footer-brand {
    text-align: center;
  }

  #footer a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    border-bottom: 1px solid #444;
    padding-bottom: 0.5rem;
  }

  .networks {
    margin-bottom: 3rem;
  }

  .links-container {
    margin-bottom: 1rem;
  }

  .links-container h4 {
    margin-bottom: 1.5rem;
  }

  .contact-info,
  .links-container {
    width: 100%;
  }
}

/* Arquivo: styles.css (Exemplo Básico) */
#contactForm div {
  margin-bottom: 15px;
}

#contactForm label {
  display: block;
  font-weight: bold;
}

#contactForm input,
#contactForm textarea {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
}

#contactForm button {
  background-color: #007bff;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* --- CORREÇÃO DE SOBREPOSIÇÃO NO BANNER --- */

/* 1. Configura o Texto (H2 e P) para flutuar acima de tudo */
.carousel-item h2,
.carousel-item p,
.carousel-caption h2,
.carousel-caption p {
  position: relative !important; /* OBRIGATÓRIO para o z-index funcionar */
  z-index: 1000 !important; /* Número bem alto para ficar na frente */
  display: block; /* Garante comportamento de bloco */
}

/* 2. Configura o Quadrado Vermelho para ficar atrás do texto */
/* Estou assumindo que a classe do quadrado seja .square, baseada no seu código anterior */
.carousel-item .square,
.carousel-caption .square,
.square {
  position: absolute !important;
  z-index: 1 !important; /* Número baixo, mas maior que 0 para não sumir atrás da foto */
}

/* 3. Caso o quadrado seja feito via pseudo-elemento (::before ou ::after) */
.carousel-item::before,
.carousel-item::after {
  z-index: 1 !important;
}
