﻿/* CONCEITO SOLUCOES EMPRESTIMOS - CSS LIMPO */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; font-size: 16px; color: #1a1a1a; background: #ffffff; line-height: 1.65; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
em { font-style: italic; }

/* VARIAVEIS */
:root {
  --g: #1a8a3c;
  --g2: #22a84a;
  --gbg: #f0faf3;
  --dark: #0d1117;
  --dark2: #161b27;
  --muted: #6b7280;
  --border: #e5e7eb;
  --rad: 12px;
  --sh: 0 4px 24px rgba(0,0,0,.07);
  --sh2: 0 12px 48px rgba(0,0,0,.12);
}

/* HELPERS */
.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.verde { color: var(--g); }
.tag-label {
  display: inline-block;
  background: var(--gbg); color: var(--g);
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .3rem 1rem; border-radius: 999px; margin-bottom: .9rem;
}
.tag-light { background: rgba(255,255,255,.15); color: #fff; }
.sec-head { text-align: center; margin-bottom: 3.5rem; }
.sec-head h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 800; line-height: 1.2; margin-bottom: .5rem; }
.sec-head p { color: var(--muted); max-width: 540px; margin: 0 auto; font-size: .95rem; }
.badge-pill {
  display: inline-block;
  background: var(--gbg); color: var(--g);
  font-size: .78rem; font-weight: 600;
  padding: .4rem 1.1rem; border-radius: 999px; margin-bottom: 1.5rem;
  border: 1px solid rgba(26,138,60,.2);
}

/* BOTOES */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  font-family: inherit; font-weight: 700; font-size: .88rem;
  border: 2px solid transparent; border-radius: var(--rad); cursor: pointer;
  padding: .62rem 1.5rem;
  transition: transform .17s ease, box-shadow .17s ease, background .17s ease, opacity .17s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: none; }
.btn-green { background: var(--g); color: #fff; box-shadow: 0 4px 16px rgba(26,138,60,.3); }
.btn-green:hover { background: var(--g2); box-shadow: 0 6px 24px rgba(26,138,60,.4); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-lg { padding: .82rem 2rem; font-size: .95rem; border-radius: 14px; }

/* NAVBAR */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.97); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: .8rem 0;
  transition: box-shadow .25s;
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.08); }
.navbar__inner { display: flex; align-items: center; gap: 1.75rem; }
.navbar__logo img { height: 70px; width: auto; border-radius: 6px; }
#nav { margin-left: auto; }
#nav ul { display: flex; gap: 1.75rem; }
#nav a { font-size: .875rem; font-weight: 500; color: var(--muted); position: relative; }
#nav a::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 2px; background: var(--g); transform: scaleX(0); transition: transform .2s; transform-origin: left; }
#nav a:hover, #nav a.active { color: #1a1a1a; }
#nav a:hover::after, #nav a.active::after { transform: scaleX(1); }
.navbar-cta { font-size: .82rem; padding: .52rem 1.2rem; border-radius: 10px; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: .25rem; }
.hamburger span { display: block; width: 24px; height: 2px; background: #1a1a1a; border-radius: 2px; transition: .25s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* HERO */
.hero {
  background: var(--dark);
  overflow: hidden; position: relative;
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 75% 40%, rgba(26,138,60,.16) 0%, transparent 60%);
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: flex-end;
  padding: 4.5rem 0 0;
  position: relative; z-index: 1;
}
.hero-text { padding-bottom: 3rem; }
.hero-text h1 {
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  font-weight: 900; line-height: 1.1; color: #fff; margin-bottom: 1.25rem;
}
.hero-text h1 em { font-style: normal; color: var(--g); }
.hero-text p { color: rgba(255,255,255,.7); font-size: 1rem; margin-bottom: 2rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-img { border-radius: 16px; overflow: hidden; align-self: center; box-shadow: 0 20px 60px rgba(0,0,0,.45); max-width: 480px; margin-bottom: 40px; }
.hero-img img { width: 100%; height: auto; display: block; }

/* STATS BAR */
.stats-bar { background: var(--g); padding: 1.4rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; text-align: center; }
.stat-item strong { display: block; font-size: 1.55rem; font-weight: 800; color: #fff; }
.stat-item span { font-size: .8rem; color: rgba(255,255,255,.85); font-weight: 500; }

/* SOBRE */
.sobre { padding: 6rem 0; background: #fff; }
.sobre-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.sobre-img { position: relative; }
.sobre-img img { border-radius: 18px; width: 100%; height: 480px; object-fit: cover; object-position: center top; box-shadow: var(--sh2); }
.sobre-selos {
  position: absolute; bottom: -1.25rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: .6rem; background: #fff;
  padding: .8rem 1.5rem; border-radius: 50px; box-shadow: var(--sh2); white-space: nowrap;
}
.sobre-selos span { font-size: .8rem; font-weight: 600; color: var(--g); }
.sobre-texto h2 { font-size: clamp(1.55rem, 2.5vw, 2.05rem); font-weight: 800; line-height: 1.2; margin-bottom: 1rem; }
.sobre-texto > p { color: var(--muted); font-size: .93rem; margin-bottom: 2rem; }
.sobre-diferenciais { display: flex; flex-direction: column; gap: 1.25rem; }
.dif-item { display: flex; gap: .85rem; align-items: flex-start; }
.dif-item > span { font-size: 1.5rem; flex-shrink: 0; margin-top: .1rem; }
.dif-item strong { display: block; font-weight: 700; font-size: .93rem; margin-bottom: .2rem; }
.dif-item p { font-size: .83rem; color: var(--muted); }

/* CARDS DIFERENCIAIS */
.cards-dif { padding: 5rem 0; background: #f8fafc; }
.cards-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.4rem; }
.card-dif {
  background: #fff; border-radius: var(--rad);
  padding: 2rem 1.4rem; text-align: center;
  box-shadow: var(--sh); border: 1px solid var(--border);
  transition: transform .22s, box-shadow .22s;
}
.card-dif:hover { transform: translateY(-4px); box-shadow: var(--sh2); }
.card-icon { font-size: 2rem; margin-bottom: .85rem; }
.card-dif h3 { font-size: .95rem; font-weight: 700; margin-bottom: .5rem; }
.card-dif p { font-size: .83rem; color: var(--muted); }

/* SERVICOS */
.servicos { padding: 6rem 0; background: #fff; }
.servicos-razoes {
  background: var(--gbg); border-radius: var(--rad);
  padding: 1.25rem 1.75rem; margin-bottom: 3rem;
  display: flex; gap: 2rem; align-items: center; flex-wrap: wrap;
}
.servicos-razoes p { font-weight: 600; color: var(--g); white-space: nowrap; }
.servicos-razoes ul { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.servicos-razoes li { font-size: .85rem; color: var(--muted); }
.servicos-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-bottom: 1.5rem; }
.serv-card { border-radius: 16px; overflow: hidden; border: 1px solid var(--border); box-shadow: var(--sh); position: relative; transition: transform .22s, box-shadow .22s; }
.serv-card:hover { transform: translateY(-5px); box-shadow: var(--sh2); }
.serv-card-icon { width: 60px; height: 60px; background: var(--gbg); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 1.4rem 1.4rem 0; color: var(--g); flex-shrink: 0; }
.serv-card-destaque .serv-card-icon { background: #e6f4ec; }
.serv-card-destaque { border-color: var(--g); box-shadow: 0 0 0 2px var(--g), var(--sh); }
.serv-tag { position: absolute; top: .9rem; right: .9rem; background: var(--g); color: #fff; font-size: .68rem; font-weight: 800; padding: .22rem .75rem; border-radius: 999px; text-transform: uppercase; letter-spacing: .06em; }
.serv-card-body { padding: 1.4rem; }
.serv-card-body h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .45rem; }
.serv-card-body p { font-size: .85rem; color: var(--muted); margin-bottom: 1.2rem; }
.mais-servicos { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.mais-item { display: flex; gap: .85rem; align-items: center; background: var(--gbg); border-radius: var(--rad); padding: 1.1rem 1.4rem; }
.mais-icon { width: 44px; height: 44px; background: var(--g); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; }
.mais-item strong { display: block; font-size: .9rem; font-weight: 700; margin-bottom: .15rem; }
.mais-item small { font-size: .78rem; color: var(--muted); }

/* SIMULADOR */
.simulador { padding: 6rem 0; background: var(--dark2); }
.sim-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.sim-texto h2 { font-size: clamp(1.55rem, 2.5vw, 2.1rem); font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 1rem; }
.sim-texto > p { color: rgba(255,255,255,.65); margin-bottom: 1.75rem; font-size: .93rem; }
.sim-lista { display: flex; flex-direction: column; gap: .55rem; }
.sim-lista li { font-size: .88rem; color: rgba(255,255,255,.75); }
.sim-form {
  background: #fff; border-radius: 20px;
  padding: 2.5rem; box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.sim-form h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 1.75rem; text-align: center; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: .8rem; font-weight: 600; color: #374151; margin-bottom: .38rem; }
.form-group label small { font-weight: 400; color: var(--muted); }
.form-group input,
.form-group select {
  width: 100%; background: #f9fafb; border: 1.5px solid var(--border);
  border-radius: 8px; color: #1a1a1a; font-family: inherit; font-size: .88rem;
  padding: .72rem 1rem; outline: none; transition: border-color .2s;
  -webkit-appearance: none; appearance: none;
}
.form-group input:focus,
.form-group select:focus { border-color: var(--g); background: #fff; }
.form-aviso { text-align: center; font-size: .73rem; color: var(--muted); margin-top: .75rem; }

/* DEPOIMENTOS */
.depoimentos { padding: 6rem 0; background: #f8fafc; }
.depo-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; margin-bottom: 1rem; }
.depo-card { background: #fff; border-radius: 16px; padding: 1.6rem; box-shadow: var(--sh); border: 1px solid var(--border); transition: transform .22s, box-shadow .22s; }
.depo-card:hover { transform: translateY(-4px); box-shadow: var(--sh2); }
.depo-header { display: flex; gap: .85rem; align-items: center; margin-bottom: 1rem; }
.depo-foto { width: 58px; height: 58px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 3px solid var(--g); }
.depo-header strong { display: block; font-weight: 700; font-size: .93rem; }
.depo-header small { font-size: .75rem; color: var(--muted); display: block; }
.stars { font-size: .82rem; margin-top: .2rem; }
.depo-card > p { font-size: .85rem; color: #374151; font-style: italic; line-height: 1.75; margin-bottom: .7rem; }
.via { font-size: .7rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }

/* VIDEOS */
.videos { padding: 6rem 0; background: #fff; }
.videos-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.vid-card { border-radius: 16px; overflow: hidden; box-shadow: var(--sh); border: 1px solid var(--border); transition: transform .22s; }
.vid-card:hover { transform: translateY(-4px); }
.vid-card video { width: 100%; aspect-ratio: 9/16; max-height: 500px; object-fit: cover; display: block; background: #000; }
.vid-label { padding: .75rem 1rem; font-weight: 600; font-size: .95rem; background: var(--dark); color: #fff; text-align: center; }

/* PARCEIROS */
.parceiros { padding: 5rem 0; background: var(--gbg); }
.parceiros-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: .9rem; }
.parceiro {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 10px; padding: .7rem 1.9rem;
  font-size: .88rem; font-weight: 800; color: #374151; letter-spacing: .04em;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
  transition: transform .18s, border-color .18s, box-shadow .18s;
}
.parceiro:hover { transform: translateY(-2px); border-color: var(--g); box-shadow: 0 4px 16px rgba(26,138,60,.15); }

/* FOOTER */
.footer { background: var(--dark); padding: 5rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 3rem; padding-bottom: 4rem; border-bottom: 1px solid rgba(255,255,255,.07); }
.footer-logo { height: 50px; width: auto; border-radius: 6px; margin-bottom: 1.1rem; }
.footer-brand p { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.7; }
.cnpj { font-size: .76rem; color: rgba(255,255,255,.28); margin-top: .75rem; }
.footer-social { display: flex; gap: .65rem; margin-top: 1.2rem; }
.soc-btn { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform .18s, opacity .18s; }
.soc-btn:hover { transform: scale(1.1); }
.soc-wa { background: #25D366; color: #fff; }
.soc-ig { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; }
.footer-col h5 { font-size: .78rem; font-weight: 700; color: var(--g); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .55rem; }
.footer-col li, .footer-col li a { font-size: .85rem; color: rgba(255,255,255,.45); }
.footer-col li a:hover { color: #fff; }
.footer-col p { font-size: .85rem; color: rgba(255,255,255,.45); margin-bottom: .45rem; }
.footer-col p a:hover { color: #fff; }
.footer-bottom { padding: 2rem 0; }
.footer-bottom p { font-size: .75rem; color: rgba(255,255,255,.22); text-align: center; line-height: 1.8; max-width: 820px; margin: 0 auto; }
.footer-bottom p + p { margin-top: .4rem; }

/* FAB */
.fab-wa {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 9999;
  width: 60px; height: 60px; border-radius: 50%; background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  animation: fab-bounce .5s ease .4s both;
  transition: transform .18s, box-shadow .18s;
}
.fab-wa:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.65); }
@keyframes fab-bounce { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* ANIMACOES */
[data-anim] { transition: opacity .57s ease, transform .57s ease; }
[data-anim].anim-ready { opacity: 0; transform: translateY(22px); }
[data-anim].visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .cards-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; padding-bottom: 3rem; }
  .hero-img { border-radius: 16px; margin: 0; }
  .hero-img img { max-height: 320px; border-radius: 16px; }
  .sobre-inner { grid-template-columns: 1fr; }
  .sobre-img { max-width: 440px; margin: 0 auto 3rem; }
  .sim-inner { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .servicos-grid { grid-template-columns: 1fr 1fr; }
  .mais-servicos { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  #nav {
    display: none; position: fixed;
    inset: 0 0 0 auto; width: 78vw; max-width: 290px;
    background: #fff; padding: 5rem 2rem 2rem;
    box-shadow: -6px 0 40px rgba(0,0,0,.12);
    z-index: 999; transform: translateX(100%);
    transition: transform .3s ease;
  }
  #nav.open { display: block; transform: translateX(0); }
  #nav ul { flex-direction: column; gap: 1.6rem; }
  #nav a { font-size: .98rem; color: #1a1a1a; }
  .navbar-cta { display: none; }
  .hamburger { display: flex; }
  .depo-grid { grid-template-columns: 1fr; }
  .videos-grid { grid-template-columns: 1fr; }
  .vid-card video { aspect-ratio: 16/9; max-height: 260px; }
  .footer-grid { grid-template-columns: 1fr; }
  .sobre-selos { position: static; transform: none; margin-top: 1.2rem; border-radius: var(--rad); justify-content: center; }
  .servicos-razoes { flex-direction: column; gap: .6rem; }
}
@media (max-width: 580px) {
  .servicos-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .sim-form { padding: 1.75rem 1.2rem; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
}
