/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #111;
  color: #f7f8fb;
  font-family: "League Spartan", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

/* CONTAINER */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #000;
  z-index: 100;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.header h1 {
  font-size: 2.2rem;
  font-weight: 700;
}

/* BUTTONS */
.btn-call,
.btn-primary {
  background: #DDD06A;
  color: #142635;
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: 600;
  text-align: center;
}

.btn-call.large {
  padding: 16px 26px;
  font-size: 1.1rem;
}

/* HERO */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.65)),
    url("images/taxipaulo.jpg") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 20px 60px;
  text-align: center;
}

.hero h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 10px;
}

.hero p {
  opacity: 0.9;
  margin-bottom: 20px;
}

/* FEATURES */
.features {
  display: flex;
  gap: 40px;
  justify-content: center;
  padding: 60px 20px;
  background: #1a1a1a;
}

.feature {
  max-width: 220px;
  text-align: center;
}

.feature img {
  width: 42px;
  margin-bottom: 10px;
}

.feature h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

/* SERVICES */
.services,
.zones {
  padding: 60px 20px;
  text-align: center;
}

.services h2,
.zones h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.services ul {
  list-style: none;
}

.services li {
  margin: 10px 0;
}

/* ZONES DESSERVIES */
.zones {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  text-align: center;
}

.zones-box {
  max-width: 700px;
  background: #1a1a1a;
  padding: 35px 30px;
  border-radius: 10px;
}

.zones-box h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.zones-box p {
  font-size: 1rem;
  color: #c4cad3;
  line-height: 1.6;
}


/* CTA */
.cta {
  background: #000;
  padding: 60px 20px;
  text-align: center;
}

/* FOOTER */
.footer {
  background: #000;
  padding: 25px 15px;
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .features {
    flex-direction: column;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .header-flex {
    flex-direction: column;
    gap: 10px;
  }

  .btn-call,
  .btn-primary {
    width: 100%;
  }
}
