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

/* ===== VARIÁVEIS KF ===== */
:root {
  --dourado: #d4af37;
  --dourado-escuro: #b8962e;
}

/* ===== BASE ===== */
body {
  font-family: Arial, sans-serif;
  background: #000;
  color: #fff;
}

/* ===== LOGO ===== */
.logo-topo {
  position: absolute;
  top: 20px;
  left: 30px;
  z-index: 999;
}

.logo-topo img {
  width: 140px;
}

/* ===== ESCOPO ===== */
.rota-campos {
  width: 100%;
}

/* ===== HERO ===== */
.rota-campos .hero-campos {
  height: 100vh;
  background: url('assets/rota-campos/campos.jpg') center/cover no-repeat;
  display: flex-end;
  align-items: center;
  justify-content: center;
  position: relative;
}

.rota-campos .hero-campos::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
}

/* HERO CONTENT */
.rota-campos .hero-content {
  position: relative;
  text-align: center;
  z-index: 2;
  padding: 190px;
}

.rota-campos .hero-content h1 {
  font-size: 52px;
  color: var(--dourado);
  margin-bottom: 10px;
}

.rota-campos .hero-content p {
  font-size: 18px;
  color: #ccc;
}

/* BOTÃO */
.rota-campos .btn-whatsapp {
  display: inline-block;
  margin-top: 25px;
  background: var(--dourado);
  color: #000;
  padding: 16px 30px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.rota-campos .btn-whatsapp:hover {
  background: var(--dourado-escuro);
  transform: scale(1.05);
}

/* ===== SERVIÇOS ===== */
.rota-campos .servicos-campos {
  padding: 80px 20px;
  text-align: center;
}

.rota-campos .servicos-campos h2 {
  font-size: 32px;
  color: var(--dourado);
  margin-bottom: 10px;
}

.rota-campos .servicos-campos p {
  color: #aaa;
}

/* GRID */
.rota-campos .grid-servicos {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 50px;
  flex-wrap: wrap;
}

/* CARD */
.rota-campos .box-servico {
  background: #111;
  padding: 30px;
  border-radius: 12px;
  width: 240px;
  border: 1px solid #222;
  transition: 0.3s;
  width: 240px;
}

.rota-campos .box-servico:hover {
  transform: translateY(-10px);
  border-color: var(--dourado);
}

.rota-campos .box-servico h3 {
  color: var(--dourado);
  margin-bottom: 10px;
}

/* ===== DESTINOS ===== */
.rota-campos .roteiros-campos {
  padding: 80px 20px;
  text-align: center;
}

.rota-campos .grid-roteiros {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.rota-campos .roteiro-card {
  background: #111;
  padding: 30px;
  border-radius: 12px;
  width: 260px;
  border: 1px solid #222;
  transition: 0.3s;
}

.rota-campos .roteiro-card:hover {
  transform: translateY(-8px);
  border-color: var(--dourado);
}

.rota-campos .roteiro-card h3 {
  color: var(--dourado);
}

/* ===== CARROS ===== */
.carros-campos {
  padding: 80px 20px;
  text-align: center;
}

.carros-campos h2 {
  color: var(--dourado);
}

/* CARROSSEL */
.carrossel-carros {
  position: relative;
  margin-top: 40px;
  overflow: hidden;
}

.track-carros {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

/* CARD */
.card-carro {
  min-width: 380px;
  height: 460px;
  border-radius: 16px;
  overflow: hidden;
}

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

/* BOTÕES */
.btn-carrossel {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #000;
  border: 1px solid var(--dourado);
  color: var(--dourado);
  font-size: 26px;
  padding: 10px 14px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

.btn-carrossel:hover {
  background: var(--dourado);
  color: #000;
}

.btn-carrossel.prev {
  left: 10px;
}

.btn-carrossel.next {
  right: 10px;
}

/* ===== EXPERIÊNCIAS ===== */
.experiencias-campos {
  padding: 80px 20px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.experiencias-campos h2 {
  color: var(--dourado);
  margin-bottom: 10px;
}

.experiencias-campos p {
  color: #aaa;
  margin-bottom: 40px;
}

/* GRID */
.grid-experiencias {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

/* CARD */
.card-exp {
  background: #111;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #222;
  transition: 0.4s;
}

/* IMAGEM */
.card-exp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* HOVER */
.card-exp:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--dourado);
  box-shadow: 0 15px 35px rgba(0,0,0,0.6);
}

/* ===== DEPOIMENTOS ===== */
.rota-campos .depoimentos-campos {
  padding: 80px 20px;
  text-align: center;
}

.rota-campos .grid-depoimentos {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.rota-campos .dep-box {
  background: #111;
  padding: 25px;
  border-radius: 12px;
  width: 260px;
  border: 1px solid #222;
}

.rota-campos .dep-box span {
  color: var(--dourado);
}

/* ===== KF TRANSPORTES CTA ===== */
.kftransportes-cta {
  padding: 80px 20px;
  text-align: center;
  background: #000;
}

/* título */
.kftransportes-cta h3 {
  font-size: 26px;
  color: var(--dourado);
  margin-bottom: 30px;
  letter-spacing: 1px;
}

/* botão (container do logo) */
.btn-kftransportes {
  display: inline-block;
  padding: 20px;
  border-radius: 16px;
  background: #111;
  border: 1px solid #222;
  transition: 0.4s;
}

/* imagem */
.btn-kftransportes img {
  width: 180px; /* controla o tamanho do logo */
  height: auto;
  display: block;
  filter: brightness(0.9);
  transition: 0.4s;
}

/* hover premium */
.btn-kftransportes:hover {
  transform: scale(1.08);
  border-color: var(--dourado);
  box-shadow: 0 0 30px rgba(212,175,55,0.5);
}

.btn-kftransportes:hover img {
  filter: brightness(1.1);
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {

  .rota-campos .hero-content h1 {
    font-size: 32px;
  }

  .rota-campos .box-servico,
  .rota-campos .roteiro-card {
    width: 100%;
  }

  .card-carro {
    min-width: 280px;
    height: 350px;
  }

}
.cta-final {
  text-align: center;
  margin-top: 60px;
}

.cta-final h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.cta-final p {
  color: #aaa;
  margin-bottom: 25px;
}