:root{
  --bg:#ffffff;
  --text:#0b1220;
  --muted:#556070;

  --blue:#1f6aa5;          /* azul principal (ref) */
  --blue-2:#2e7ec0;        /* hover */
  --blue-soft:#eaf4ff;     /* fundos claros */

  --border:#e6eef7;
  --shadow: 0 18px 45px rgba(11,18,32,.10);

  --radius:22px;
  --container: 1160px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.55;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

.container{
  width:min(var(--container), calc(100% - 40px));
  margin:0 auto;
}

.center{ text-align:center; }
.mt{ margin-top:22px; }
.muted{ color:var(--muted); }
.small{ font-size:.88rem; }

.title{
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  margin:0 0 10px;
  letter-spacing:-.02em;
}
.subtitle{
  margin:0;
  color:var(--muted);
  max-width: 75ch;
  margin-inline:auto;
}

/* ========== HEADER (ref 1) ========== */
.header{
  position:sticky;
  top:0;
  z-index:50;
  background:#fff;
  border-bottom:1px solid var(--border);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:18px 0;
}

.logo{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 240px;
}
.logo__mark{
  width:56px; height:56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #d8efff, #ffffff);
  border: 1px solid var(--border);
  display:grid;
  place-items:center;
  font-weight:900;
  color:var(--blue);
}
.logo__text{
  display:grid;
  line-height:1.05;
}
.logo__text strong{
  font-weight:900;
  letter-spacing:.08em;
  font-size:.95rem;
}
.logo__text span{
  font-weight:800;
  color:var(--blue);
  font-size:1.05rem;
}

.menu{
  display:flex;
  gap:26px;
  align-items:center;
  justify-content:center;
  flex:1;
  font-weight:700;
  color:#2b3440;
}
.menu a{
  padding:10px 8px;
  border-radius:12px;
}
.menu a:hover{
  background: var(--blue-soft);
  color: var(--blue);
}

.header__actions{
  display:flex;
  gap:14px;
  align-items:center;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius: 10px;
  font-weight:800;
  border:1px solid transparent;
  background: var(--blue);
  color:#fff;
  box-shadow: 0 10px 22px rgba(31,106,165,.18);
  white-space:nowrap;
}
.btn:hover{ background: var(--blue-2); }

.btn--outline{
  background:#fff;
  color: var(--blue);
  border-color: var(--blue);
  box-shadow:none;
}
.btn--outline:hover{
  background: var(--blue-soft);
}

.btn--big{ padding:14px 20px; border-radius:12px; }

/* mobile nav */
.menu__mobile{
  display:none;
  border:1px solid var(--border);
  background:#fff;
  padding:10px 12px;
  border-radius:12px;
  font-size:18px;
  cursor:pointer;
}
.mobile-nav{
  display:none;
  border-top:1px solid var(--border);
  background:#fff;
  padding:12px 0 18px;
}
.mobile-nav a{
  display:block;
  padding:12px 0;
  font-weight:800;
  color:#2b3440;
}
.mobile-nav__actions{
  display:grid;
  gap:10px;
  margin-top:10px;
}

/* ========== HERO (ref 1) ========== */
.hero{
  position:relative;
  height: 520px;
  overflow:hidden;
}
.hero__bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(31,106,165,.65) 0%, rgba(31,106,165,.55) 40%, rgba(31,106,165,.35) 100%),
    url(IMAGENS/BG.webp);
  background-size:cover;
  background-position:center;
  transform: scale(1.03);
}
.hero__content{
  position:relative;
  height:100%;
  display:flex;
  align-items:center;
}
.hero__panel{
  width:min(520px, 90%);
  background: rgba(0,0,0,.12);
  border:1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  padding: 34px 28px;
  color:#fff;
  backdrop-filter: blur(2px);
}
.hero__panel h1{
  margin:0 0 16px;
  font-family: Georgia, "Times New Roman", serif; /* parecido com ref */
  font-weight:700;
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  line-height:1.05;
}
.hero__panel h1 span{
  font-family: inherit;
  font-weight:700;
}
.hero__text{
  margin: 16px 0 0;
  font-size: 1.25rem;
  opacity: .95;
}

.btn--whats{
  background:#22c55e;
  color:#fff;
  border-color: transparent;
  box-shadow: 0 10px 22px rgba(34,197,94,.22);
}
.btn--whats:hover{ filter: brightness(.96); }

/* ========== SECTIONS ========== */
.section{
  padding: 72px 0;
}
.section--alt{
  background: #f7fbff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Split (ref 2) */
.split{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 54px;
  align-items:start;
}
.split__text p{
  color: var(--muted);
  font-size: 1.02rem;
}
.photo{
  width:100%;
  height: 360px;
  border-radius: 12px;
  background-size:cover;
  background-position:center;
  box-shadow: var(--shadow);
}
.photo--rounded{
  border-radius: 40px;
}

.bullets{
  list-style:none;
  padding:0;
  margin: 22px 0 0;
  display:grid;
  gap:16px;
}
.bullets li{
  display:flex;
  align-items:flex-start;
  gap:12px;
  font-weight:800;
  color:#1f2a38;
}
.bullet__icon{
  width:34px; height:34px;
  display:grid;
  place-items:center;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  border:1px solid var(--border);
}

/* Cards */
.cards{
  display:grid;
  gap:18px;
}
.cards--3{ grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card{
  background:#fff;
  border:1px solid var(--border);
  border-radius: 18px;
  padding: 18px 18px;
  box-shadow: 0 10px 22px rgba(11,18,32,.05);
}
.card--line{
  position:relative;
  overflow:hidden;
}
.card--line::before{
  content:"";
  position:absolute;
  left:0; top:0;
  width:100%;
  height:4px;
  background: var(--blue);
}

/* Lists */
.list{
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  display:grid;
  gap:8px;
}

/* ========== SERVIÇOS (ref 3) ========== */
.service-block{
  margin-top: 28px;
  display:grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 36px;
  align-items:start;
}
.service-block__content h3{
  margin: 0 0 12px;
  font-size: 1.55rem;
  letter-spacing: -.01em;
}
.service-block__content p{
  color: var(--muted);
}

.benefits{
  margin-top: 26px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 26px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.benefit{
  display:flex;
  gap:12px;
  align-items:flex-start;
}
.benefit__icon{
  width:46px; height:46px;
  border-radius: 999px;
  background: #fff;
  border: 2px solid var(--blue);
  display:grid;
  place-items:center;
  font-weight:900;
  color: var(--blue);
}
.benefit p{ margin: 4px 0 0; }

.service-cta{
  margin-top: 22px;
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ========== DEPOIMENTOS ========== */
.quote blockquote{
  margin:0;
  font-weight:800;
  font-size:1.05rem;
  color:#1b2533;
}
.quote figcaption{
  margin-top:12px;
  color:var(--muted);
  font-weight:700;
}

/* ========== CONTATO ========== */
.contact{
  margin-top: 26px;
  display:grid;
  grid-template-columns: 1fr .95fr;
  gap: 22px;
  align-items:start;
}
.form{
  background:#fff;
  border:1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 22px rgba(11,18,32,.05);
  display:grid;
  gap: 12px;
}
label{
  display:grid;
  gap:8px;
  font-weight:800;
  color:#1f2a38;
}
input, textarea{
  width:100%;
  border:1px solid var(--border);
  border-radius: 12px;
  padding: 12px 12px;
  font: inherit;
  outline:none;
  background:#fff;
}
input:focus, textarea:focus{
  border-color: rgba(31,106,165,.45);
  box-shadow: 0 0 0 4px rgba(31,106,165,.12);
}

.contact__info{
  display:grid;
  gap: 14px;
}
.info-box{
  background:#fff;
  border:1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 22px rgba(11,18,32,.05);
}
.info{
  list-style:none;
  padding:0;
  margin: 12px 0 14px;
  display:grid;
  gap: 8px;
  color: var(--muted);
}
.map{
  border-radius: 18px;
  overflow:hidden;
  border:1px solid var(--border);
  background:#fff;
  box-shadow: 0 10px 22px rgba(11,18,32,.05);
}
.map__placeholder{
  height: 210px;
  display:grid;
  place-items:center;
  color: var(--muted);
  background: linear-gradient(180deg, #ffffff, #f5fbff);
}

/* ========== FOOTER (ref 4) ========== */
.footer{
  background: var(--blue);
  color:#fff;
  padding: 36px 0;
  margin-top: 20px;
}
.footer__inner{
  display:grid;
  gap: 18px;
}
.footer__social{
  display:flex;
  gap: 14px;
  align-items:center;
}
.social{
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.20);
  display:grid;
  place-items:center;
}
.social:hover{
  background: rgba(255,255,255,.18);
}
.social svg{
  width: 18px;
  height: 18px;
  fill: #fff;
}
.footer__info p, .footer__copy p{
  margin:0;
  opacity:.95;
}
.footer__copy{
  opacity:.95;
  border-top: 1px solid rgba(255,255,255,.18);
  padding-top: 14px;
}

/* ========== WhatsApp floating button ========== */
.whats-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;

  display:flex;
  align-items:center;
  gap: 10px;

  padding: 12px 14px;
  border-radius: 999px;
  background: #25d366;
  color:#fff;
  font-weight:900;
  box-shadow: 0 14px 30px rgba(0,0,0,.18);
}
.whats-float:hover{ filter: brightness(.97); }
.whats-float__icon{ font-size: 14px; line-height: 1; }
.whats-float__text{ font-size: .92rem; }

/* ========== Responsive ========== */
@media (max-width: 980px){
  .menu{ display:none; }
  .header__actions{ display:none; }
  .menu__mobile{ display:inline-flex; }

  body.menu-open .mobile-nav{ display:block; }

  .split{ grid-template-columns: 1fr; }
  .service-block{ grid-template-columns: 1fr; }
  .cards--3{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }

  .hero{ height: 520px; }
  .hero__panel{ padding: 28px 22px; }
}

@media (max-width: 520px){
  .logo{ min-width: auto; }
  .hero{ height: 520px; }
  .benefits{ grid-template-columns: 1fr; }
  .whats-float__text{ display:none; }
}
/* LIDERANÇA - card centralizado e organizado */
#lideranca .leader-card{
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  padding: 28px;
}

/* foto circular e maior */
#lideranca .leader-photo{
  display: flex;
  justify-content: center;
  margin: 0 0 16px;
}

#lideranca .leader-photo img{
  width: 140px;
  height: 140px;
  border-radius: 999px;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
}

/* ajustes de espaçamento */
#lideranca .leader-name{
  margin: 10px 0 14px;
}

#lideranca .leader-card p{
  margin: 10px 0;
}

#lideranca .leader-role{
  margin-top: 14px;
}
.map iframe{
  width: 100%;
  height: 280px;
  border: 0;
  border-radius: 14px;
}
/* LIDERANÇA - cards padronizados */
#lideranca .leader-card{
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  padding: 28px;
}

/* foto circular e maior */
#lideranca .leader-photo{
  display: flex;
  justify-content: center;
  margin: 0 0 16px;
}

#lideranca .leader-photo img{
  width: 140px;
  height: 140px;
  border-radius: 999px;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
}

/* espaçamentos */
#lideranca .leader-name{
  margin: 10px 0 14px;
}

#lideranca .leader-card p{
  margin: 10px 0;
}

#lideranca .leader-role{
  margin-top: 14px;
}

/* listas dentro do card (para cursos/hobbies) */
#lideranca .leader-list{
  list-style: disc;
  padding-left: 18px;
  margin: 8px auto 14px;
  text-align: left;
  max-width: 440px;
}

#lideranca .leader-list li{
  margin: 6px 0;
}
/* LIDERANÇA: 2 cards lado a lado no desktop */
#lideranca .cards{
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr; /* mobile: 1 coluna */
  justify-items: center;
}

@media (min-width: 900px){
  #lideranca .cards{
    grid-template-columns: repeat(2, minmax(0, 1fr)); /* desktop: 2 colunas */
    align-items: start;
  }

  /* deixa as duas cards com a mesma largura e não “gigantes” */
  #lideranca .leader-card{
    width: 100%;
    max-width: 520px;
  }
}
