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

/* ===== BASE ===== */
html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: 'Montserrat', sans-serif;
  position: relative;
  background-color: rgba(225, 225, 225, 0.50);
}

/* BACKGROUND GLOBAL FIXO */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url("/bg-texture.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ===== HERO ===== */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 30px;
}

/* ===== TOPO COM LOGO E GRADIENTE ===== */
.hero-top {
  width: 100%;
  padding-top: 30px;
  padding-bottom: 60px;
  background:
      linear-gradient(
        to bottom,
        rgba(235, 235, 235, 0.75) 0%,
        rgba(255, 255, 255, 0.85) 25%,
        rgba(235, 235, 235, 0.75) 45%,
        rgba(225, 225, 225, 0.50) 100%
      );
}

/* ===== LOGO ===== */
.logo img {
  max-width: 260px;
  height: auto;
  filter: drop-shadow(0 8px 8px rgba(0,0,0,0.25));
}

/* ===== SERVIÇOS ===== */
.services {
  margin-top: 15px;
  line-height: 1.6;
  color: #123c5e;
  font-size: 15px;
}

/* ===== BOTÕES ===== */
.buttons {
  margin-top: 15px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.btn {
  background-color: #123c5e;
  color: #e1e1e1;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.3);
}

/* ===== RODAPÉ ===== */
footer {
  width: 100%;
  background-color: #123c5e;
  color: #e1e1e1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px 10px;
  box-shadow: 0 -6px 14px rgba(0,0,0,0.25);
}

footer .title {
  font-family: 'Exo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 6px;
}

footer .info {
  font-size: 12px;
  line-height: 1.4;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 600px) {
  .logo img {
    max-width: 220px;
  }
}
