/* ===== RESET BÁSICO ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(to bottom, #0d0d0d, #1a1a1a);
  color: #fff;
  font-family: "Poppins", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  gap: 30px;
  padding-bottom: 50px;
}

/* ===== LOGO ===== */
.logo {
  max-width: 300px;
  height: auto;
  margin-top: 20px;
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.2));
}

/* ===== BOTÕES ===== */
.btn {
  display: flex;
  gap: 20px;
  margin: 10px 0;
}

.btn a img {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.btn a img:hover {
  transform: scale(1.1);
  filter: brightness(1.3);
}

/* ===== TÍTULO SEÇÃO ===== */
.titulo-servicos {
  color: #c7a463;
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  /* margin-top: 5px; */
  /* margin-bottom: 5px; */
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  
}

/* ===== TÍTULO CONTATO ===== */
.titulo-contato {
  color: #c7a463;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  /* margin-top: 5px; */
  /* margin-bottom: 5px; */
  text-transform: uppercase;
  /* letter-spacing: 3px; */
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

/* ===== GRID DE SERVIÇOS ===== */
.servicos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  width: 90%;
  max-width: 1200px;
  justify-items: center;
  padding: 5px 20px;
}

.servicos img {
  width: 100%;
  /* max-width: 250px; */
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ===== TEXTO ENDEREÇOS ===== */
.texto-estilo {
  color: #ddd;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  line-height: 1.6;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
  width: 90%;
  max-width: 900px;
  letter-spacing: 1px;
}

/* ===== CARROSSEL ===== */
.carousel {
  position: relative;
  width: 90%;
  max-width: 400px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.6);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-track img {
  width: 100%;
  flex-shrink: 0;
  border-radius: 15px;
}

/* Botões */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  font-size: 30px;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  transition: background 0.3s;
}

.carousel-btn:hover {
  background: rgba(0,0,0,0.8);
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

/* ===== LINHA ESTILIZADA ===== */
.linha-estilo {
  border: none;
  height: 2px;
  width: 80%;
  margin: 30px auto;
  background: linear-gradient(to right, transparent, #c7a463, transparent);
  box-shadow: 0 2px 6px rgba(199, 164, 99, 0.4);
  border-radius: 5px;
   max-width: 900px; 
}
