/* Estilos Globais */
h3 {
  color: #175597;
  text-align: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
body {
  font-family: 'Montserrat', Arial, sans-serif;
  line-height: 1.7;
  color: #222;
  background: linear-gradient(120deg, #f9f9f9 0%, #e9eef3 60%, #ff5f02 100%);
h1 {
  background: linear-gradient(90deg, #175597 60%, #ff5f02 100%);
  color: #fff;
}
.h1-white {
  color: #fff !important;
  font-size: 2.8rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 36px 0 36px 0;
  border-radius: 0 0 40px 40px;
  box-shadow: 0 8px 32px rgba(23,85,151,0.10);
  margin-bottom: 0;
  text-align: center;
  background-size: 120% 100%;
  background-position: center;
}
}

/*TEXTO INICIAL*/
h2, h3 {
  color: #175597;
  text-align: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}

a {
  text-decoration: none;
  color: #007bff;
}

a:hover {
  text-decoration: underline;
}

/* Botões */
button {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}

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

button p {
  margin: 0;
  font-size: 14px;
  color: #333;
  text-align: center;
}

/* Faixa com carrossel */
.faixada {
  background: linear-gradient(90deg, #e9eef3 60%, #ff5f02 100%);
  padding: 32px 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 32px;
  box-shadow: 0 4px 24px rgba(23,85,151,0.10);
}

.faixada .carrossel {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
}

.faixada .carrossel.first {
  animation: scroll-first 20s linear infinite;
}

.faixada .carrossel.delayed {
  /* transform: translateX(6%); */
  animation: scroll-delayed 20s linear infinite;
  /* animation-delay: 10s; */
}

.faixada .carrossel img {
  height: 100px;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(23,85,151,0.10);
  background: #fff;
  padding: 8px;
  width: auto;
  transition: transform 0.2s, box-shadow 0.2s;
}
.faixada .carrossel img:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(255,95,2,0.16);
  margin-bottom: 12px;
  margin-top: 0;
  text-align: center;
  display: block;
}

@keyframes scroll-first {
  0% {
    transform: translateX(0%);
    opacity: 1;
  }
  47% {
    transform: translateX(-100%);
    opacity: 1;
  }
  48% {
    transform: translateX(-100%);
    opacity: 0;
  }
  49% {
    transform: translateX(117%);
    opacity: 0;
  }
  50% {
    transform: translateX(117%);
    opacity: 1;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}

@keyframes scroll-delayed {
  0% {
    transform: translateX(0%);
    opacity: 1;
  }
  96% {
    transform: translateX(-211%);
    opacity: 1;
  }
  97% {
    transform: translateX(-211%);
    opacity: 0;
  }
  98% {
    transform: translateX(6%);
    opacity: 0;
  }
  99% {
    transform: translateX(6%);
    opacity: 1;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}

/* Seção "O que você procura?" */
.o-que-procura {
  text-align: center;
  padding: 40px 20px;
  background: rgba(255,255,255,0.95);
  border-radius: 32px;
  box-shadow: 0 4px 24px rgba(23,85,151,0.10);
}

.o-que-procura h2 {
  margin-bottom: 20px;
  font-size: 1.8rem;
  color: none;
}

.grid-equipamentos {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  justify-content: center;
  margin: 32px 0;
}

.grid-equipamentos .quadrado {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #e9eef3;
  border-radius: 32px;
  padding: 32px 16px 24px 16px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  min-height: 180px;
  max-width: 260px;
  box-shadow: 0 2px 12px rgba(23,85,151,0.08);
}

.grid-equipamentos .quadrado:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 8px 24px rgba(23,85,151,0.16);
  border-color: #ff5f02;
}

.grid-equipamentos .quadrado img {
  height: 72px;
  margin-bottom: 18px;
}

.grid-equipamentos .quadrado p {
  font-size: 1.1rem;
  color: #175597;
  font-weight: 600;
  margin-top: 8px;
}

/*textos*/

.processo-locacao h2 {
  color: #093463;
}
.descricao h2 {
  color: #093463;
}
.o-que-procura h5 {
  color: #093463;
}

/* Processo de Locação */
.processo-locacao {
  display: flex;
  flex-direction: row;
  gap: 32px;
  padding: 48px 32px;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 4px 24px rgba(23,85,151,0.10);
  justify-content: center;
  align-items: center;
}

.processo-locacao .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: justify;
}

.processo-locacao img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 8px 32px rgba(23,85,151,0.12);
  margin: 0 12px;
}
.processo-locacao .descricao {
  max-width: 1000px;
  text-align: justify;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(90deg, #175597 60%, #ff5f02 100%);
  color: #fff;
  border-radius: 40px;
  text-transform: uppercase;
  font-weight: bold;
  margin-top: 24px;
  font-size: 1.1rem;
  letter-spacing: 1px;
  box-shadow: 0 2px 8px rgba(23,85,151,0.10);
  transition: background 0.2s, box-shadow 0.2s;
}

.btn:hover {
  background: #ff5f02;
  color: #fff;
  box-shadow: 0 4px 16px rgba(255,95,2,0.12);
}

/* Mapa */
.map-container {
  margin: 20px auto;
  max-width: 1000px;
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
}

.modal-content {
  position: relative;
  background: #fff;
  padding: 40px 32px 32px 32px;
  border-radius: 28px;
  box-shadow: 0 4px 24px rgba(23,85,151,0.10);
  width: 420px;
  max-width: 96vw;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.modal-content h2 {
  color: #175597;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.modal-content h3 {
  color: #175597;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.modal-content li {
  list-style: none;
  padding: 0;
  margin: 0 0 8px 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: stretch;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 18px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close:hover {
  color: #ff0000;
}

.modal-content .btn {
  margin-bottom: 16px;
  padding: 14px 0;
  width: 100%;
  background: linear-gradient(90deg, #175597 60%, #ff5f02 100%);
  color: #fff;
  border: none;
  border-radius: 32px;
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(255,95,2,0.10);
  transition: background 0.2s, box-shadow 0.2s;
}

.modal-content .btn:hover {
  background-color: #0056b3;
}

body.modal-open {
  overflow: hidden;
}

.modal.active {
  display: flex;
}
