body {
  font-family: 'Redley', sans-serif;
  background-color: #bbbbbb;
  color: #111;
  font-family: 'Redley';
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

* {
  box-sizing: border-box;
}

.menu {
  position: fixed;
  width: 100%;
  display: flex;
  align-items: center;
  top: 0%;
  left: 0%;
  flex-direction: column;
  z-index: 1000;
}

.backmenu {
  background-image: url('../imagens/fotocabeçalho.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

ul {
  list-style-type: none;
  margin: 0;
  overflow: hidden;
  display: flex;
  width: 100%;
  justify-content: space-around;
}

li {
  float: left;
}

li a {
  display: block;
  color: rgb(255, 255, 255);
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 32px;
}



.fotologin {
  width: 50px;
  height: 50px;
}

.logo {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-around;
  overflow: hidden;
  align-items: center;
  z-index: 1001;
}

@font-face {
  font-family: 'Redley';
  src: url('Redley-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
li,
span,
button,
input,
label,
div {
  font-family: 'Redley';
}

.test {
  background-image: url('../imagens/foto1logo.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.test2 {
  background-image: url('../imagens/foto2logo.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.test3 {
  background-image: url('../imagens/foto3logo.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

main {
  margin: 0;
}

.carousel {
  position: absolute;
  top: 0;
}

footer {
  position:fixed;
  bottom: 0;
  width: 100%;
  background-color: #6b6b6b;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.fixado {
  position: fixed !important;
  bottom: 0px !important;
  align-items: center !important;
}
  


footer ul {
  margin: 0px !important;
  padding: 0px !important;
}

.fotologo {
  width: 170px;
  height: 120px;
  filter: drop-shadow(2px 2px 7px #000000);
}

.submenu {
  color: white;
  font-size: 60px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 78px;
  text-shadow: 4px 4px 10px black;
}

.centralizar {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
}

.centralizar.coluna {
  flex-direction: column;
  margin-top: 200px
}

.form-lr {
   margin-top: 200px;
  padding: 20px;
  border: 2px solid #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  /*espaçamento entre dois componentes dentro de um display flex*/
}

.form-lr div {
  width: 100%;
  flex-direction: row;
  /*sadsadadsadadsadsa*/
  display:inline;
  align-items: center;
  justify-content: center;
}

.form-lr div.coluna {
  flex-direction: column;
  align-items: start;
}

.form-lr div.contato {
  justify-content: left;
  align-items: center;
  color: #ffffff;
  gap: 20px;
  font-size: 30px;
}

.form-lr label {
  color: white;
  font-size: 30px;
  display: inline;
  /*sadsadadsadadsadsa*/
}

.form-lr input[type='text'] {
  background-color: transparent;
  border: none;
  border-bottom: 2px solid white;
  color: white;
  font-size: 30px;
  width: 100%;
}

.form-lr input:focus {
  outline: none;
}

.form-lr input[type='submit'] {
  width: auto;
  text-decoration: underline;
  border: none;
  font-size: 30px;
  color: white;
  background-color: transparent;
  cursor: pointer;
}

.form-lr a {
  font-size: 20px;
  color: #ffffff;
  text-decoration: none;
  padding: 7px;
  background-color: #bbbbbb;
  border-radius: 10px;
}

.contato {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 18px;
}

.contato img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.contato a {
  text-decoration: none;
  color: inherit;
   background-color: transparent; 
}






/* ===========================
   SEÇÃO DE DEPOIMENTOS 
=========================== */

/* Container principal */
.centralizar {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
  flex-direction: column; /* 🔥 Faz tudo ficar empilhado (um embaixo do outro) */
}

/* Grid de depoimentos */
.grid-container {
  margin-bottom: 60px;
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 colunas */
  grid-template-rows: repeat(2, auto);   /* 2 linhas */
  gap: 30px 30px; /* Espaçamento vertical e horizontal */
  padding: 10px;
  width: 90%;
  height: 90%;
  place-items: center;
  row-gap: 100px;
}

/* Cada depoimento */
.grid-item-depoimentos {
  background-color: #d1d1d1;
  width: 250px;
  height: 300px;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grid-item-depoimentos:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.grid-item-depoimentos img {
  width: 100px;
  margin-bottom: 10px;
}

.grid-item-depoimentos h1 {
  font-size: 20px;
  color: #000;
  margin: 10px 0;
  font-weight: bold;
}

.grid-item-depoimentos p {
  font-size: 15px;
  color: #111;
  line-height: 1.5;
  margin: 0 auto;
  width: 90%;
}
main.centralizar {
  padding-bottom: 100px;
}

/* 🔘 Botão de envio de depoimento */
.centralizar a button {
  display: block;
  margin: 40px auto;
  background-color: #bbbbbb;
  color: #111;
  font-size: 22px;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.centralizar a button:hover {
  background-color: #a4a1a1;
  transform: scale(1.05);
}

/* Remove qualquer sublinhado ou linha do link */
.centralizar a {
  text-decoration: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
  background-image: none !important;
}

/* ===========================
   RESTANTE DO CSS 
=========================== */

.form-lr input[type='password'] {
  background-color: transparent;
  border: none;
  border-bottom: 2px solid white;
  color: white;
  font-size: 30px;
  width: 100%;
}
.grid-container-eventos {
  margin-top: 200px;
  display: grid;
  /* Declares the element as a grid container */
  grid-template-columns: repeat(4, 1fr);
  /* Creates 4 columns, each taking up an equal fraction of available space */
  grid-template-rows: repeat(2, auto);
  /* Creates 2 rows, each with a fixed height of 100px (adjust as needed) */
  gap: 10px;
  /* Adds a 10px gap between grid items (optional) */
  padding: 10px;
  /* Optional: for visualization */
  width: 100%;
  place-items: center;
  list-style: none;
 

}

.grid-container-portifolio {
  margin-top: 200px;
  display: grid;
  /* Declares the element as a grid container */
  grid-template-columns: repeat(3, 1fr);
  /* Creates 3 columns */
  grid-template-rows: repeat(2, auto);
  gap: 20px;
  padding: 10px;
  width: 100%;
  place-items: center;
  list-style: none;
  column-gap:5px ;
}


.grid-container-portifolio1 {
   display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 30px;
      margin-top: 100px;
      padding: 0;
      
  
}
.grid-container-portifolio1 a {
      display: flex;
      flex-direction: column; /* imagem em cima, texto embaixo */
      align-items: center;
      text-decoration: none;
      color: rgb(255, 255, 255);
      font-size: 28px;
      font-weight: bold;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .grid-container-portifolio1 li {
      list-style: none; /* remove a bolinha */
    }

.grid-item {
  margin-top:20px ;
  background-color: rgba(250, 244, 244, 0.923);
  display: flex;
  justify-content: center;
  align-items: end;
  flex-direction: column;
  font-size: 1.2em;
  width: 250px;
  height: 250px;
}

.grid-item1 {
  background-color: #bbbbbb;
   display: flex;
  justify-content: center;
  align-items: end;
  flex-direction: column;
  font-size: 1.2em;
  width: 250px;
  height: 250px;
  margin-right:center;
  
}

.grid-item1 span {
  width: 100%;
  background-color: #d1d1d1;
  position: relative;
  text-align: center;
  color: black;
  font-size: 24px;
  padding-top: 10px;
}

.grid-item2 {
  margin-top:50px ;
  background-color: #d1d1d1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 1.2em;
  width: 300px;
  height: 320px;
}


.grid-item3 {
  background-color: #bbbbbb;
   display: flex;
  justify-content: center;
  align-items: end;
  flex-direction: column;
  font-size: 1.2em;
  width: 260px;
  height: 260px;
  margin-right:center;
  
}

.grid-item3 span {
  width: 100%;
  background-color: #d1d1d1;
  position: relative;
  text-align: center;
  color: black;
  font-size: 21px;
  padding-top: 5px;
}


.grid-item2 span {
  width: 100%;
  background-color: #d1d1d1;
  position: relative;
  text-align: center;
  color: black;
  font-size: 28px;
  padding-top: 13px;
}

.grid-item span {
  width: 100%;
  background-color: #d1d1d1;
  position: relative;
  text-align: center;
  color: BLACK;
  font-size: 26px;
  padding-top:5px;
}

 .grid-container-equipe {margin-top: 200px;
  display: grid;
  /* Declares the element as a grid container */
  grid-template-columns: repeat(4, 1fr);
  /* Creates 4 columns, each taking up an equal fraction of available space */
  grid-template-rows: repeat(2, auto);
  /* Creates 2 rows, each with a fixed height of 100px (adjust as needed) */
  gap:60px;
  /* Adds a 10px gap between grid items (optional) */
  column-gap:3px;
  padding: 10px;
  /* Optional: for visualization */
  width: 100%;
  place-items: center;
  list-style: none;

    }

.fotoequeipe {
   margin-top:10px ;
  height: 100%;
  width: 100%;
  border: 10px solid #d1d1d1;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  object-fit: cover;
}

img {
  max-width: 350px;
  height: auto;
}

a, button, input[type="submit"] {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
}

.pesquisa {
  outline: none;
  border-radius: 0px;
  border: none;
  background-color: #D9D9D9;
  color: white;
  font-size: 30px;
  padding-left: 40px;
  position: relative;
}

.iconpesquisa {
  position: relative;
  background-color: #000000;
}

.iconpesquisa::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 35px;
  height: 35px;
  background-image: url('iconpesquisa.png');
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 10;
  /* garante que fique por cima */
}

.duvidas {
  margin-top: 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 30px;
  width: 100%;
  place-items: center;
}

.duvidas p{
  color: #ffffff;
  position: relative;
  font-size: 30px;
  text-align: center;
  text-decoration-line: underline;
}

.centralizar.coluna-nos {
  flex-direction: column;
  margin-top: 180px
}

.centralizar.equipe{
  min-height: 120vh;
}

.text2 p{
  color:#ffffff;
  text-align: center;
  font-size: 28px;
}

.sobrenos{
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 70px;
}

.sobrenos p{
  font-size: 25px;
}

.centralizar.gaporcamento{
  gap: 100px;
}

.opcao{
  display: flex;
  flex-direction: column;
  gap: 30px;
  color: #ffffff;
  width: 100%;
  margin-top: 300px;
  margin-bottom: 100px;
}

.opcao.calcular{
  margin-top: 0;
  align-items: center;
}

.opcao.calcular h1{
  font-size: 60px;
}

.opcao.calcular p{
  font-size: 30px;
  text-align: center;
}

.opcao label{
  font-size: 36px;
}

.tipo-evento{
  font-size: px;
  outline: none;
  border: none;
  flex: 1;
}

.tipo-evento option{
  font-size: 25px;
}
.inputs-row{
  display: flex;
  flex-direction: row;
  gap: 15px;
}

.inputs-row label{
  display: inline;
}
.inputs-row input{
  flex: 1;
}
.tipo-evento{
  font-size: 25px;
}

/* ===========================
   RESPONSIVIDADE MOBILE
=========================== */

/* Tablets e telas médias (até 1100px) */
@media (max-width: 1100px) {
  .menu ul {
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px;
  }

  li a {
    font-size: 28px;
    padding: 10px 12px;
  }

  .fotologo {
    width: 120px;
    height: 100px;
  }

  .submenu {
    font-size: 50px;
    top: 80px;
  }

  .grid-container {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px;
    gap: 30px;
  }

  .grid-container-eventos {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .grid-container-portifolio {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .grid-item-depoimentos {
    width: 100%;
    max-width: 350px;
  }

  .grid-item {
    width: 250px;
    height: 250px;
  }

  .grid-item1 {
    width: 300px;
    height: 300px;
    margin-right: 0;
  }

  .form-lr {
    width: 90%;
    padding: 15px;
  }

  .form-lr label {
    font-size: 24px;
  }

  .form-lr input[type='text'] {
    font-size: 24px;
  }

  footer ul li a {
    font-size: 22px;
  }

  footer {
    position: relative !important;
    bottom: auto !important;
  }

  .fixado {
    position: relative !important;
    bottom: auto !important;
  }
}

/* Smartphones e telas pequenas (até 768px) */
@media (max-width: 768px) {
  /* Menu de navegação */
  .menu {
    position: relative;
  }

  .menu ul {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 5px;
    gap: 5px;
  }

  li {
    float: none;
    width: auto;
    text-align: center;
  }

  li a {
    font-size: 18px;
    padding: 10px 12px;
    display: inline-block;
    min-height: 44px;
    min-width: 44px;
  }

  .fotologo {
    width: 70px;
    height: 60px;
  }

  .fotologin {
    width: 35px;
    height: 35px;
  }

  .submenu {
    font-size: 28px;
    top: auto;
    position: relative;
    padding: 10px;
    margin-top: 5px;
  }

  /* Grids - 1 coluna para mobile */
  .grid-container {
    grid-template-columns: 1fr;
    padding: 15px;
    margin-top: 20px;
    margin-bottom: 20px;
    gap: 40px;
  }

  .grid-container-eventos {
    grid-template-columns: 1fr;
    margin-top: 20px;
    gap: 20px;
  }

  .grid-container-portifolio {
    grid-template-columns: 1fr;
    margin-top: 20px;
    gap: 25px;
  }

  .grid-container-portifolio1 {
    margin-top: 20px;
    gap: 20px;
  }

  /* Itens de grid */
  .grid-item {
    width: 100%;
    max-width: 280px;
    height: 280px;
  }

  .grid-item span {
    font-size: 24px;
  }

  .grid-item1 {
    width: 100%;
    max-width: 300px;
    height: 300px;
    margin-right: 0;
  }

  .grid-item1 span {
    font-size: 22px;
  }

  /* Depoimentos */
  .grid-item-depoimentos {
    width: 100%;
    max-width: 320px;
    height: auto;
    min-height: 300px;
    padding: 15px;
  }

  .grid-item-depoimentos img {
    width: 120px;
  }

  .grid-item-depoimentos h1 {
    font-size: 20px;
  }

  .grid-item-depoimentos p {
    font-size: 16px;
  }

  /* Formulários */
  .form-lr {
    width: 95%;
    padding: 15px;
    margin-top: 20px;
    gap: 20px;
  }

  .form-lr label {
    font-size: 20px;
  }

  .form-lr input[type='text'],
  .form-lr input[type='email'],
  .form-lr input[type='password'] {
    font-size: 18px;
  }

  .form-lr input[type='submit'] {
    font-size: 22px;
  }

  .form-lr a {
    font-size: 18px;
  }

  .form-lr div.contato {
    font-size: 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  /* Dúvidas/Suporte */
  .duvidas {
    margin-top: 20px;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 15px;
  }

  .duvidas p {
    font-size: 22px;
  }

  /* Sobre nós */
  .centralizar.coluna-nos {
    margin-top: 20px;
    padding: 15px;
  }

  .text2 p {
    font-size: 22px;
    padding: 10px;
  }

  .sobrenos {
    flex-direction: column;
    gap: 30px;
    padding: 15px;
  }

  .sobrenos p {
    font-size: 18px;
  }

  /* Orçamento */
  .centralizar.gaporcamento {
    gap: 50px;
  }

  .opcao {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 15px;
  }

  .opcao.calcular h1 {
    font-size: 40px;
  }

  .opcao.calcular p {
    font-size: 22px;
  }

  .opcao label {
    font-size: 24px;
  }

  /* Footer */
  footer {
    position: relative !important;
    bottom: auto !important;
    padding: 15px 10px;
    margin-top: 20px;
  }

  .fixado {
    position: relative !important;
    bottom: auto !important;
  }

  footer ul {
    flex-direction: column;
    gap: 10px;
    padding: 10px 0;
  }

  footer ul li {
    width: 100%;
  }

  footer ul li a {
    font-size: 18px;
    padding: 12px 8px;
    display: block;
  }

  /* Ajustes gerais */
  .centralizar {
    padding: 15px;
    min-height: auto;
  }

  .centralizar.coluna {
    margin-top: 20px;
  }

  .centralizar.equipe {
    min-height: auto;
    padding-bottom: 20px;
  }

  main.centralizar {
    padding-bottom: 20px;
  }

  .pesquisa {
    font-size: 20px;
    padding-left: 30px;
    width: 100%;
  }

  .contato img {
    width: 25px;
    height: 25px;
  }

  .contato {
    font-size: 16px;
  }
}

/* Smartphones muito pequenos (até 480px) */
@media (max-width: 480px) {
  .submenu {
    font-size: 24px;
    top: 50px;
  }

  li a {
    font-size: 16px;
    padding: 6px 8px;
  }

  .fotologo {
    width: 60px;
    height: 50px;
  }

  .fotologin {
    width: 28px;
    height: 28px;
  }

  .grid-item,
  .grid-item1 {
    max-width: 250px;
    height: 250px;
  }

  .grid-item span {
    font-size: 20px;
  }

  .grid-item1 span {
    font-size: 18px;
  }

  .grid-item-depoimentos {
    max-width: 280px;
  }

  .grid-item-depoimentos h1 {
    font-size: 18px;
  }

  .grid-item-depoimentos p {
    font-size: 14px;
  }

  .form-lr label {
    font-size: 18px;
  }

  .form-lr input[type='text'],
  .form-lr input[type='email'],
  .form-lr input[type='password'] {
    font-size: 16px;
  }

  .form-lr input[type='submit'] {
    font-size: 20px;
  }

  .duvidas p {
    font-size: 18px;
  }

  .text2 p {
    font-size: 18px;
  }

  .sobrenos p {
    font-size: 16px;
  }

  footer {
    padding: 12px 8px;
  }

  footer ul {
    gap: 8px;
  }

  footer ul li a {
    font-size: 14px;
    padding: 10px 6px;
  }

  .opcao.calcular h1 {
    font-size: 32px;
  }

  .opcao.calcular p {
    font-size: 18px;
  }

  .opcao label {
    font-size: 20px;
  }
}

.centralizar a button {
  margin-top: 10px;
}


