:root{
  --bg: #f6f8fb;
  --text: #0f172a;
  --muted: #475569;
  --card: #ffffff;
  --border: #e2e8f0;

  /* Ajuste aqui para as cores da Lidera */
  --primary: #0360ca;
  --primary-2: #0453c9;

  --radius: 18px;
}

*{ box-sizing: border-box; }
html,body{ margin:0; padding:0; font-family: Inter, system-ui, Arial; color: var(--text); background: var(--bg); }
a{ color: inherit; text-decoration: none; }

.container{
  width: min(1280px, 100%);
  margin: 0 auto;
}

.header{
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(246,248,251,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
  gap: 16px;
}

.logo{ height: 34px; width:auto; }

.nav{
  display:flex;
  gap: 18px;
  align-items:center;
}

.nav a{
  font-weight:600;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 10px;
}
.nav a:hover{ background: #eef2ff; color: var(--text); }

.header-actions{
  display:flex;
  align-items:center;
  gap: 10px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary{
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  color: white;
}

.btn-outline{
  background: transparent;
  border-color: #c5c5c7;
  color: #858586;
}

.btn-ghost{
  background: transparent;
  border-color: transparent;
  color: var(--muted);
}

.menu-btn{
  display:none;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 18px;
  cursor:pointer;
}

.hero{
  padding: 46px 0 20px;
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items:center;
}

.hero h1{
  font-size: clamp(24px, 2.6vw, 38px); /* antes estava maior */
  line-height: 1.15;
  margin: 0 0 14px;
  font-weight: 700;
}

.hero h2{
  font-size: clamp(12px, 1.15vw, 15px);
  line-height: 1.7;
  margin: 0 0 18px;
  font-weight: 400;
  color: var(--muted);
}

.hero-subtitle{
  font-size: clamp(16px, 1.3vw, 18px);
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--text);
  text-align: justify;
}

.hero-description{
  max-width: 520px;              /* controla largura */
  background: transparent;       /* pode virar card depois */
  display: flex;
  flex-direction: column;
  gap: 10px;                     /* espaçamento entre parágrafos */
  margin-bottom: 20px;
}

.hero-description p{
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  text-align: justify;
  text-justify: inter-word;
}

.hero-list{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.hero-cta{
  display:flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.hero-note{
  color: var(--muted);
  margin-top: 14px;
}

.hero-card{
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.hero-img{
  width: 100%;
  height: auto;      /* imagem define a altura */
  display: block;
  border-radius: inherit;
}

.hero-badge{
  position: absolute;
  left: 1px;
  bottom: 14px;

  background: rgba(246, 248, 251, 0.9); /* mesma cor do site */
  color: var(--text);

  padding: 10px 12px;
  border-radius: 14px;

  display: flex;
  flex-direction: column;
  gap: 4px;

  border: 1px solid var(--border);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
}

.section{
  padding: 34px 0;
}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.checklist{
  margin: 0;
  padding-left: 0;
  list-style: none;
  color: var(--muted);
  line-height: 2.0;
}

.contact{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.form{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  display:flex;
  flex-direction:column;
  gap: 10px;
}

input, textarea{
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
  outline: none;
  background: #fff;
}
input:focus, textarea:focus{
  border-color: #93c5fd;
}

small{ color: var(--muted); }

.footer{
  padding: 22px 0;
  border-top: 1px solid var(--border);
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.muted{ color: var(--muted); }

/* Responsivo */
@media (max-width: 900px){
  .hero-grid, .split, .contact{ grid-template-columns: 1fr; }
  .hero-card{ min-height: 280px; }
}

@media (max-width: 760px){
  .menu-btn{ display:block; }
  .nav{
    display:none;
    position:absolute;
    left: 0;
    right: 0;
    top: 64px;
    background: var(--card);
    border-bottom: 1px solid var(--border);
    padding: 12px 4%;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .nav.open{ display:flex; }
}

/* Nossa história */
.history-container{
  background: #ffffff;
  border-radius: 20px;
  padding: 20px 20px;
  box-shadow: 0 12px 10px rgba(0,0,0,0.06);
}

.section-title{
  font-size: 32px;
  margin-bottom: 30px;
  color: var(--primary);
}

.timeline{
  position: relative;
  display: grid;
  gap: 3px;
}

.timeline::before{
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e5e7eb;
  transform: translateX(-50%);
}

.timeline-item{
  width: 45%;
  background: #f9fafb;
  padding: 20px;
  border-radius: 16px;
  position: relative;
}

.timeline-item.left{ justify-self: start; }
.timeline-item.right{ justify-self: end; }

.timeline-number{
  position: absolute;
  top: 20px;
  right: -18px;
  background: var(--primary);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.timeline-item.right .timeline-number{
  left: -18px;
  right: auto;
}

.timeline-item h3{
  margin-top: 0;
  margin-bottom: 8px;
}

.timeline-item p{
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

/* Responsivo */
@media (max-width: 900px){
  .timeline::before{ left: 8px; }
  .timeline-item{
    width: 100%;
    padding-left: 40px;
  }
  .timeline-item.left,
  .timeline-item.right{ justify-self: stretch; }

  .timeline-number{
    left: -8px !important;
    right: auto;
  }
}

/* ===== Missão, Visão e Valores ===== */

.mvv-container{
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.mvv-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mvv-box{
  background: #f9fafb;
  padding: 24px;
  border-radius: 16px;
}

.mvv-box h3{
  margin-top: 0;
  color: var(--primary);
}

.mvv-box p,
.mvv-box li{
  color: var(--muted);
  line-height: 1.7;
}

.mvv-box ul{
  padding-left: 18px;
  margin: 0;
}

.values-list{
  list-style: none;
  padding: 0;
}

.values-list li{
  padding-left: 26px;
  position: relative;
  margin-bottom: 10px;
}

.values-list li::before{
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* Responsivo */
@media (max-width: 900px){
  .mvv-grid{
    grid-template-columns: 1fr;
  }
}

/* ===== Bloco de Serviços ===== */

.services-card{
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  max-width: 1280px;
  margin-left: auto; 
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.services-card h2{
  margin-top: 0;
  margin-bottom: 16px;
  color: var(--primary);
}

.services-list{
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.services-list li{
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--muted);
  line-height: 1.6;
}

.services-list li::before{
  content: "📌";
  position: absolute;
  left: 0;
}

.services-cta{
  text-align: right;
}

.services-cta-center{
  margin-top: 32px;
  text-align: center;
}


/* Responsivo */
@media (max-width: 900px){
  .services-card{
    max-width: 100%;
    margin-left: 0;
  }
  .services-cta{
    text-align: center;
  }
}

/* ===== Sobre Nós ===== */

.sobre-container{
  background: #ffffff;
  border-radius: 20px;
  padding: 48px 36px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.06);
}

.sobre-header{
  max-width: 720px;
  margin-bottom: 36px;
}

.sobre-header h2{
  color: var(--primary);
  font-size: 32px;
  margin-bottom: 12px;
}

.sobre-header p{
  color: var(--muted);
  line-height: 1.7;
}

.sobre-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.sobre-bloco{
  background: #f9fafb;
  padding: 24px;
  border-radius: 16px;
}

.sobre-bloco h3{
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 10px;
}

.sobre-bloco p{
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 10px;
}

.sobre-lista{
  padding-left: 18px;
  margin: 0;
}

.sobre-lista li{
  color: var(--muted);
  line-height: 1.8;
}

/* CTA FINAL */
.sobre-cta{
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  color: #ffffff;
  padding: 36px;
  border-radius: 20px;
  text-align: center;
}

.sobre-cta h3{
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 26px;
}

.sobre-cta p{
  max-width: 640px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.cta-botoes{
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.sobre-cta .btn-outline{
  border-color: rgba(255,255,255,0.6);
  color: #ffffff;
}

/* Responsivo */
@media (max-width: 900px){
  .sobre-grid{
    grid-template-columns: 1fr;
  }

  .sobre-container{
    padding: 32px 22px;
  }
}





