/* ============================================================
   FIDELIDADE AUTO — Landing Page
   Lato (headings) + Open Sans (body)
   Vermelho Fidelidade: #E42313
   ============================================================ */

:root {
  --red:      #E42313;
  --red-dark: #c01d0f;
  --black:    #111;
  --text:     #2b2b2b;
  --muted:    #666;
  --light:    #f5f5f5;
  --border:   #e0e0e0;
  --white:    #fff;
  --shadow:   0 18px 48px rgba(0,0,0,.09);
  --radius:   20px;
}

*, *::before, *::after { box-sizing: border-box; }
html  { scroll-behavior: smooth; }
body  {
  margin: 0;
  font-family: "Open Sans", Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.5;
}
a   { color: var(--red); }
img { max-width: 100%; display: block; }
h1, h2, h3 { font-family: "Lato", Arial, sans-serif; margin: 0; color: var(--black); }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0;
  position: relative;
  overflow: hidden;
  background:
    url('hero-bg.jpg') center 40% / cover no-repeat;
}

/* Overlay: escuro à esquerda, transparente à direita p/ formulário */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(0,0,0,.68) 0%,
    rgba(0,0,0,.52) 44%,
    rgba(0,0,0,.28) 100%
  );
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
  padding: 42px 0;
  position: relative;
  z-index: 1;
}

/* ── Logos row ── */
.logos-row {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 120px;
}
.logos-row .hero-logo   { width: 96px; height: auto; border-radius: 7px; }
.logos-divider          {
  width: 1px; height: 34px;
  background: rgba(255,255,255,.3);
  margin: 0 16px;
  flex-shrink: 0;
}
.logos-row .fid-logo    { height: 26px; width: auto; }

/* ── H1 ── */
h1 {
  font-size: clamp(44px, 2.5vw, 56px);
  line-height: 1.15;
  letter-spacing: -.5px;
  max-width: 480px;
  color: #fff;
  font-weight: 800;
}

.hero-subtitle {
  font-size: 24px;
  line-height: 1.40;
  color: #fff;
  max-width: 540px;
  margin: 4px 0 0;
}

/* ── 3 bullets ── */
.hero-bullets {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
/* Check icon — círculo sólido visível sobre fundo escuro */
.hero-bullets li svg { flex-shrink: 0; }

/* ===================== FORM CARD ===================== */
.form-card {
  background: rgba(255,255,255,.97);
  border-radius: var(--radius);
  box-shadow: 0 28px 70px rgba(0,0,0,.28), 0 2px 10px rgba(0,0,0,.10);
  padding: 24px 22px 20px;
}
.form-card h2 {
  text-align: center;
  font-size: 19px;
  line-height: 1.35;
  margin-bottom: 56px;
  margin-top: 14px;
  color: var(--black);
}
form { display: grid; gap: 4px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: grid; gap: 5px; }
label { font-weight: 600; font-size: 12px; color: #111; }
input, select, textarea {
  width: 100%;
  height: 36px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fafafa;
  padding: 0 11px;
  font: 500 13px "Open Sans", Arial, sans-serif;
  color: #111;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
textarea {
  height: 36px;
  line-height: 20px;
  padding-top: 8px;
  resize: none;
  overflow: hidden;
}
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23E42313' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 11px center;
  padding-right: 32px;
  cursor: pointer;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(228,35,19,.10);
  background: #fff;
}
.checkbox-group {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 6px;
  align-items: start;
  margin-top: 0px;
}
.checkbox-group input  { width: 14px; height: 14px; margin: 2px 0 0; padding: 0; accent-color: var(--red); }
.checkbox-group label  { font-weight: 400; font-size: 12px; line-height: 1.35; }
.error-message         { min-height: 13px; font-size: 12px; color: #c01d0f; margin-top: -3px; }
.form-group.error input,
.form-group.error select,
.form-group.error textarea { border-color: #c01d0f; }

.submit-btn {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 47px; margin-top: 7px;
  background: var(--red); color: #fff;
  border: 0; border-radius: 8px;
  font: 700 15px "Lato", Arial, sans-serif;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.submit-btn:hover    { background: var(--red-dark); transform: translateY(-1px); }
.submit-btn:disabled { opacity: .7; cursor: not-allowed; transform: none; }

/* ===================== SECTIONS ===================== */
.section { padding: 76px 0; }

.section-label {
  display: inline-block;
  font: 700 11px "Lato", Arial, sans-serif;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.section h2 {
  font-size: clamp(26px, 2.4vw, 32px);
  line-height: 1.15;
  letter-spacing: -.4px;
  margin-bottom: 12px;
}

/* ===================== COBERTURAS ===================== */
.features-section { background: var(--light); }
.features-header  { text-align: center; margin-bottom: 44px; }
.features-header p { color: var(--muted); font-size: 15px; max-width: 520px; margin: 8px auto 0; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
  transition: box-shadow .2s;
}
.feature-card:hover { box-shadow: 0 10px 30px rgba(228,35,19,.08); }
.icon-wrap {
  width: 56px; height: 56px;
  background: rgba(228,35,19,.07);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.icon-wrap img { width: 28px; height: 28px; object-fit: contain; }
.feature-card h3 { font-size: 15px; font-weight: 900; margin-bottom: 8px; line-height: 1.3; }
.feature-card p  { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.55; }

/* ===================== PLANS ===================== */
.plans-section  { background: #fff; }
.plans-header   { text-align: center; margin-bottom: 44px; }
.plans-header p { color: var(--muted); font-size: 15px; max-width: 520px; margin: 8px auto 0; }

.plan-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}
.plan-featured-content {
  padding: 36px 36px;
  display: flex; flex-direction: column; gap: 18px;
}
.badge-rec {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(228,35,19,.07);
  color: var(--red);
  font: 700 11px "Lato", Arial, sans-serif;
  letter-spacing: .07em;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(228,35,19,.2);
  width: fit-content;
}
.plan-header { display: flex; align-items: center; gap: 12px; }
.plan-icon   { width: 38px; height: 38px; object-fit: contain; }
.plan-name   { font: 700 22px "Lato", Arial, sans-serif; color: var(--black); }
.plan-featured-content > p { color: var(--muted); font-size: 14px; margin: 0; }

.plan-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.plan-list li {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 14px; color: var(--black);
}
.plan-list li svg { flex-shrink: 0; margin-top: 1px; }

.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  height: 44px; padding: 0 24px;
  background: var(--red); color: #fff;
  border-radius: 8px;
  font: 700 13px "Lato", Arial, sans-serif;
  letter-spacing: .05em;
  text-decoration: none;
  width: fit-content;
  transition: background .2s;
}
.btn-primary:hover { background: var(--red-dark); color: #fff; }

.plan-featured-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.plan-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 20px;
  display: flex; flex-direction: column; gap: 12px;
}
.plan-card .plan-header { gap: 10px; }
.plan-icon-sm  { width: 30px; height: 30px; object-fit: contain; }
.plan-name-sm  { font: 700 16px "Lato", Arial, sans-serif; color: var(--black); }
.plan-card > p { color: var(--muted); font-size: 13px; margin: 0; line-height: 1.5; flex-grow: 1; }
.plan-card .plan-list li { font-size: 13px; }

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  height: 38px; padding: 0 14px;
  background: transparent; color: var(--red);
  border: 1.5px solid var(--red);
  border-radius: 8px;
  font: 700 12px "Lato", Arial, sans-serif;
  letter-spacing: .05em;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.btn-outline:hover { background: var(--red); color: #fff; }

/* ===================== PROTEÇÃO VITAL ===================== */
/* Cinza azulado muito escuro — transição suave do branco anterior */
.vital-section {
  background: #f5f5f5;
  color: var(--text);
}
.vital-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.vital-section .section-label { color: var(--red); }
.vital-section h2             { color: var(--black); font-size: clamp(24px, 2.2vw, 30px); }
.vital-note { color: var(--muted); font-size: 14px; margin: 8px 0 0; }

.vital-list { list-style: none; margin: 20px 0 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.vital-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; font-weight: 600; color: var(--black);
  line-height: 1.45;
}
.vital-list li svg { flex-shrink: 0; margin-top: 1px; }

.vital-cta {
  display: inline-flex; align-items: center; justify-content: center;
  height: 46px; padding: 0 24px;
  background: var(--red); color: #fff;
  border-radius: 8px;
  font: 700 13px "Lato", Arial, sans-serif;
  letter-spacing: .05em;
  text-decoration: none;
  margin-top: 28px;
  transition: background .2s;
}
.vital-cta:hover { background: var(--red-dark); color: #fff; }

.vital-img { border-radius: 16px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,.30); }
.vital-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ===================== TRUST / SELOS ===================== */
.trust-section { background: var(--light); }
.trust-section h2 { text-align: center; margin-bottom: 36px; }

.seals-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}
.seal-card {
  display: flex; align-items: center; gap: 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 20px;
}
/* Normaliza o tamanho dos SVGs dos selos — ambos ao mesmo height */
.seal-card img  { width: auto; height: 64px; flex-shrink: 0; object-fit: contain; }
.seal-label     { font: 700 14px "Lato", Arial, sans-serif; color: var(--black); margin-bottom: 5px; }
.seal-desc      { font-size: 13px; color: var(--muted); line-height: 1.5; margin: 0; }

/* ===================== FAQ ===================== */
.faq-section { background: #fff; }
.faq-wrap    { max-width: 660px; margin: 0 auto; }
.faq-section h2 { text-align: center; margin-bottom: 30px; }

.accordion { display: grid; gap: 10px; }
.faq-item  { border: 1px solid var(--border); border-radius: 12px; background: #fff; overflow: hidden; }
.faq-question {
  width: 100%; border: 0; background: #fff;
  text-align: left;
  padding: 17px 56px 17px 20px;
  font: 400 15px "Open Sans", Arial, sans-serif;
  color: var(--black);
  cursor: pointer; position: relative; white-space: normal;
}
.faq-question::after {
  content: '';
  position: absolute; right: 18px; top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  background: rgba(228,35,19,.07);
  border-radius: 50%;
}
.faq-question::before {
  content: '';
  position: absolute; right: 27px; top: 50%;
  width: 7px; height: 7px;
  border-right: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  transform: translateY(-65%) rotate(45deg);
  z-index: 1;
  transition: transform .2s;
}
.faq-item.active .faq-question::before { transform: translateY(-35%) rotate(225deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-answer p { padding: 0 20px 18px; font-size: 14px; line-height: 1.6; color: var(--muted); margin: 0; }

/* ===================== FOOTER ===================== */
/* Cinza antracite neutro — sem conotação de cor, profissional */
.footer {
  background: #f5f5f5;
  color: var(--black);
  padding: 52px 0;
  font-size: 14px;
}
.footer h3     { color: var(--black); font-size: 16px; margin: 0 0 12px; font-weight: 700; }
.footer a      { color: var(--muted); }
.legal-text    { font-size: 12px; line-height: 1.7; color: #353535; margin: 0 0 10px; }
.footer-bottom {
  margin-top: 28px;
  border-top: 1px solid var(--border);
  padding-top: 22px;
}
.footer-bottom-inner {
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: 32px; flex-wrap: wrap;
}
.footer-contact           { display: flex; flex-direction: column; gap: 2px; }
.footer-contact p         { margin: 0; color: var(--text); }
.phone-note               { font-size: 11px !important; color: #383838 !important; }
.footer-policy            { margin-top: 10px !important; }
.footer-policy a          { color: var(--text) !important; text-decoration: none; font-weight: 600; }
.footer-hours-title       { font-weight: 700; font-size: 14px; margin: 0 0 10px; color: var(--black); }
.footer-hours-list        { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 5px; }
.footer-hours-list li     { display: flex; justify-content: space-between; gap: 24px; font-size: 13px; color: var(--muted); }

/* ===================== THANK YOU ===================== */
.thankyou-body  { background: linear-gradient(180deg,#fff,#f5f5f5); }
.thankyou-page  { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 30px; }
.thankyou-card  {
  width: min(680px,100%); background: #fff;
  border: 1px solid var(--border); border-radius: 22px;
  box-shadow: var(--shadow); text-align: center; padding: 52px 36px 48px;
}
.thankyou-logo  { height: 48px; margin: 0 auto 8px; }
.thankyou-card h1 { font-size: 27px; margin-bottom: 14px; }
.thankyou-card p  { color: #222; margin: 8px 0; }
.thankyou-contact { margin: 22px 0 26px; }
.thankyou-contact p { color: #222; margin: 0 !important; }
.back-link        { font-weight: 700; text-decoration: none; color: var(--red); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1050px) {
  .hero-grid      { grid-template-columns: 1fr; gap: 36px; padding: 44px 0 52px; }
  .logos-row      { margin-bottom: 80px; }
  .plan-featured  { grid-template-columns: 1fr; }
  .plan-featured-img { display: none; }
  .vital-grid     { grid-template-columns: 1fr; }
  .vital-img      { display: none; }
  .features-grid  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .container      { width: calc(100% - 28px); }
  .hero           {
    background-image: url('hero-mobile-bg.jpg');
    background-position: top center;
    background-size: 100% auto;
    background-repeat: repeat-y;
  }
  .hero-grid      { gap: 26px; padding: 36px 0 44px; }
  h1              { font-size: 30px; }
  .hero-subtitle  { font-size: 20px; }
  .hero-bullets   { gap: 6px; }
  .hero-bullets li { font-size: 15px;}
  .logos-row      { margin-bottom: 120px; }
  .logos-row .hero-logo { width: 78px; }
  .logos-row .fid-logo  { height: 20px; }
  .logos-divider  { height: 28px; }

  /* form */
  .form-group label    { display: none; }
  .checkbox-group label{ display: inline; }
  .form-row            { grid-template-columns: 1fr; gap: 5px; }
  .form-card           { padding: 22px 16px 18px; border-radius: 16px; }
  .form-card h2        { font-size: 19px; margin: 6px auto 32px; max-width: 300px; }
  input, select, textarea { text-align: center; font-size: 16px; font-weight: 300; border-color: #aaa; }
  input::placeholder, textarea::placeholder { color: #111; font-size: 14px; }
  textarea       { height: 54px; line-height: 1.35; padding-top: 10px; }

  /* sections */
  .section        { padding: 56px 0; }
  .section h2     { font-size: 26px; }
  .features-grid  { grid-template-columns: 1fr; }
  .plans-grid     { grid-template-columns: 1fr; }
  .seals-row      { grid-template-columns: 1fr; }
  .seal-card      { align-items: flex-start; }

  /* footer */
  .footer-bottom-inner { flex-direction: column; align-items: center; gap: 22px; }
  .footer-contact      { align-items: center; text-align: center; }
  .footer-hours-title  { text-align: center; }
  .footer-hours-list li{ justify-content: center; gap: 16px; }
  .legal-text          { font-size: 11px; }

  /* thank you */
  .thankyou-card  { padding: 36px 20px; }
  .thankyou-card h1 { font-size: 23px; }
  .thankyou-fid-logo { height: 90px !important; }
}