/* ============================
   DESIGN SYSTEM — Floripa Jeep
   Paleta extraída do logotipo real
   ============================ */

:root {
  --bg:         #081a10;   /* verde escuro profundo */
  --surface:    #0d2b1f;   /* fundo do logo */
  --border:     #1a4030;   /* borda sutil verde */
  --text:       #f5f5f0;   /* branco suave */
  --muted:      #7a9e8a;   /* sage esmaecido */
  --accent:     #ddd8b8;   /* creme do logo (círculo/tagline) */
  --green-wa:   #25d366;
  --radius:     8px;
  --font:       'Inter', 'Roboto', sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* HEADER */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(8, 26, 16, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

#site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  height: 52px;
  width: auto;
  display: block;
}

.header-cta {
  display: inline-block;
  background: var(--green-wa);
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  padding: 10px 20px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: opacity .2s;
}
.header-cta:hover { opacity: .88; }

/* HERO */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(155deg, #081a10 55%, #0d2b1f);
  padding: 120px 0 80px;
}

.hero-tagline {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 20px;
  padding: 4px 16px;
  margin-bottom: 24px;
  opacity: .85;
}

#hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.destaque { color: var(--accent); }

#hero p {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 36px;
}

/* BOTÕES */
.btn-whatsapp {
  display: inline-block;
  background: var(--green-wa);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: opacity .2s;
}
.btn-whatsapp:hover { opacity: .88; }

.btn-submit {
  background: var(--accent);
  color: #000;
  font-weight: 700;
  padding: 14px 28px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1rem;
  transition: opacity .2s;
}
.btn-submit:hover { opacity: .88; }

/* SEÇÕES */
section { padding: 80px 0; }

h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
}

/* SERVIÇOS */
.grid-servicos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  font-weight: 600;
  font-size: 1.05rem;
  transition: border-color .2s;
}
.card:hover { border-color: var(--accent); }

/* FORMULÁRIO */
#form-contato {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 500px;
  margin: 0 auto;
}

#form-contato input,
#form-contato select {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  padding: 14px 16px;
  font-size: 1rem;
  font-family: var(--font);
}

#form-contato input::placeholder { color: var(--muted); }

#form-contato select option { background: var(--surface); }

/* CARD COM FOTO */
.card-foto {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card-foto img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform .35s;
}
.card-foto:hover img { transform: scale(1.04); }
.card-foto span {
  display: block;
  padding: 16px;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
}

/* GALERIA */
#galeria { background: var(--bg); }

.grid-galeria {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.grid-galeria img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
  transition: opacity .2s;
}
.grid-galeria img:hover { opacity: .88; }

/* PARCEIROS */
#parceiros { background: var(--surface); }

.grid-parceiros {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px;
}
.grid-parceiros img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: brightness(.85);
  transition: filter .2s;
  border-radius: 6px;
}
.grid-parceiros img:hover { filter: brightness(1); }

/* FAQ ACCORDION */
.faq-list { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

.faq-item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }

.faq-q {
  width: 100%;
  background: var(--surface);
  color: var(--text);
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  padding: 18px 20px;
  border: none;
  cursor: pointer;
  transition: background .2s;
}
.faq-q:hover { background: var(--border); }

.faq-a {
  padding: 0 20px 16px;
  color: var(--muted);
  font-size: .97rem;
  line-height: 1.7;
}

/* SEÇÕES ALTERNADAS */
#diferenciais { background: var(--surface); }

/* RESPONSIVO */
@media (max-width: 640px) {
  #hero { padding: 100px 0 60px; }
  section { padding: 60px 0; }
  .header-logo { height: 40px; }
}
