/* ============================================
   RECURSO PREV — Trânsito (transito.css)
   ============================================ */

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

:root {
  --blue:        #015094;
  --blue-dark:   #013a6e;
  --blue-light:  #0169c7;
  --green:       #3ea849;
  --green-dark:  #2d8037;
  --green-light: #5ec96a;
  --white:       #ffffff;
  --gray-50:     #f8fafc;
  --gray-100:    #f1f5f9;
  --gray-200:    #e2e8f0;
  --gray-300:    #cbd5e1;
  --gray-400:    #94a3b8;
  --gray-500:    #64748b;
  --gray-600:    #475569;
  --gray-700:    #334155;
  --gray-800:    #1e293b;
  --gray-900:    #0f172a;
  --shadow-sm:   0 1px 2px 0 rgb(0 0 0 / .05);
  --shadow:      0 1px 3px 0 rgb(0 0 0 / .10), 0 1px 2px -1px rgb(0 0 0 / .10);
  --shadow-md:   0 4px 6px -1px rgb(0 0 0 / .10), 0 2px 4px -2px rgb(0 0 0 / .10);
  --shadow-lg:   0 10px 15px -3px rgb(0 0 0 / .10), 0 4px 6px -4px rgb(0 0 0 / .10);
  --shadow-xl:   0 20px 25px -5px rgb(0 0 0 / .10), 0 8px 10px -6px rgb(0 0 0 / .10);
  --radius-sm:   6px;
  --radius:      10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --transition:  180ms ease;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Rawline', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }

/* ── Container ───────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  border-color: #25d366;
}
.btn-whatsapp:hover {
  background: #1dbc5c;
  border-color: #1dbc5c;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37,211,102,.38);
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.10);
  border-color: var(--white);
}

.btn-full {
  width: 100%;
  justify-content: center;
  padding: 15px;
  font-size: 16px;
}

/* ── WhatsApp Float ───────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: var(--white);
  padding: 13px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 22px rgba(37,211,102,.45);
  transition: all 0.28s ease;
}
.whatsapp-float i { font-size: 22px; }
.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37,211,102,.55);
  background: #1dbc5c;
}

@media (max-width: 480px) {
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 15px; border-radius: 50%; }
}

/* ── Header ──────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 11px;
  padding-bottom: 11px;
  gap: 16px;
}

.site-logo img { height: 36px; width: auto; }

.header-nav { display: flex; gap: 30px; }
.header-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  transition: color var(--transition);
}
.header-nav a:hover { color: var(--blue); }

.header-whatsapp {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: var(--white);
  padding: 9px 17px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--transition);
}
.header-whatsapp i { font-size: 18px; }
.header-whatsapp:hover { background: #1dbc5c; }

@media (max-width: 768px) { .header-nav { display: none; } }
@media (max-width: 640px) {
  .header-whatsapp span { display: none; }
  .header-whatsapp { padding: 10px 13px; }
}

/* ── Hero ────────────────────────────────── */
.hero {
  position: relative;
  background: linear-gradient(145deg, #012d55 0%, var(--blue) 55%, #0169c7 100%);
  padding: 88px 0 76px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 5% 85%,  rgba(62,168,73,.18)   0%, transparent 55%),
    radial-gradient(ellipse at 95% 10%, rgba(255,255,255,.06) 0%, transparent 50%);
  pointer-events: none;
}

/* decorative dots grid */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.09) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.hero-bottom-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--green), var(--green-light), var(--green));
}

.hero .container { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.92);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 22px;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2rem, 4.2vw, 3.3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.13;
  margin-bottom: 20px;
  letter-spacing: -.025em;
  max-width: 740px;
}

.hero h1 .accent { color: #7de98a; }

.hero-sub {
  font-size: 1.075rem;
  color: rgba(255,255,255,.80);
  max-width: 600px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-ctas {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}

/* ── Trust Bar ───────────────────────────── */
.trust-bar {
  background: #012d55;
  padding: 22px 0;
  border-bottom: 2px solid rgba(62,168,73,.3);
}

.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 8px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.trust-item strong {
  font-size: 1.35rem;
  font-weight: 800;
  color: #7de98a;
  line-height: 1;
}

.trust-item span {
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .07em;
}

.trust-divider {
  width: 1px;
  height: 38px;
  background: rgba(255,255,255,.12);
}

@media (max-width: 640px) {
  .trust-divider { display: none; }
  .trust-bar .container { gap: 20px 36px; }
}

/* ── Section Common ──────────────────────── */
.section-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--green);
  background: rgba(62,168,73,.10);
  padding: 5px 13px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-header h2 {
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 10px;
  letter-spacing: -.025em;
  line-height: 1.2;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 540px;
  margin: 0 auto;
}

.section-header.light h2    { color: var(--white); }
.section-header.light p     { color: rgba(255,255,255,.70); }
.section-header.light .section-label {
  color: #7de98a;
  background: rgba(125,233,138,.15);
}

/* ── Services ────────────────────────────── */
.services {
  padding: 88px 0;
  background: var(--gray-50);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 18px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #eef4fb;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.25rem;
  color: var(--blue);
  flex-shrink: 0;
}

.service-card h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
  line-height: 1.3;
}

.service-card p {
  font-size: .84rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ── About ───────────────────────────────── */
.about {
  padding: 88px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-content .section-label { margin-bottom: 12px; }

.about-content h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 18px;
  letter-spacing: -.025em;
  line-height: 1.2;
}

.about-content p {
  color: var(--gray-600);
  margin-bottom: 15px;
  font-size: .9375rem;
  line-height: 1.78;
}

.about-features {
  margin: 22px 0 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9375rem;
  color: var(--gray-700);
  font-weight: 500;
}

.about-features li i {
  color: var(--green);
  font-size: .95rem;
  flex-shrink: 0;
}

.about-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-card-big {
  background: linear-gradient(145deg, #012d55 0%, var(--blue) 100%);
  border-radius: var(--radius-xl);
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 100%;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.about-card-big::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
}

.about-card-big::after {
  content: '';
  position: absolute;
  bottom: -70px; left: -50px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(62,168,73,.10);
}

.about-card-big i {
  font-size: 3.8rem;
  color: rgba(255,255,255,.88);
  position: relative;
  z-index: 1;
}

.about-card-big span {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.about-card-big em {
  font-style: normal;
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  position: relative;
  z-index: 1;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { order: -1; }
  .about-card-big { padding: 40px 32px; }
}

/* ── Contact Section ─────────────────────── */
.contact-section {
  padding: 88px 0;
  background: linear-gradient(145deg, #012d55 0%, var(--blue) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 44px;
  align-items: start;
}

.contact-form-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 38px;
  box-shadow: var(--shadow-xl);
}

.form-group { margin-bottom: 19px; }

.form-group label {
  display: block;
  font-size: .84rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: .9375rem;
  font-family: inherit;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(1,80,148,.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }
.form-group textarea { resize: vertical; min-height: 115px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-success {
  display: none;
  background: #dcfce7;
  border: 1px solid #86efac;
  color: #166534;
  padding: 14px 18px;
  border-radius: var(--radius);
  margin-bottom: 18px;
  font-weight: 500;
  font-size: .9375rem;
  gap: 9px;
  align-items: center;
}

.form-success.show { display: flex; }

.form-error {
  display: none;
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
  padding: 14px 18px;
  border-radius: var(--radius);
  margin-bottom: 18px;
  font-weight: 500;
  font-size: .9375rem;
  gap: 9px;
  align-items: center;
}

.form-error.show { display: flex; }

/* contact info */
.contact-info-box {
  padding-top: 6px;
  color: var(--white);
}

.contact-info-box h3 {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.contact-info-box > p {
  color: rgba(255,255,255,.72);
  margin-bottom: 28px;
  line-height: 1.7;
  font-size: .9375rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  margin-bottom: 11px;
  transition: background var(--transition), transform var(--transition);
}

.contact-info-item:hover {
  background: rgba(255,255,255,.16);
  transform: translateX(3px);
}

.cinfo-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.cinfo-icon.wpp { background: #25d366; }

.contact-info-item strong {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: rgba(255,255,255,.62);
  margin-bottom: 2px;
}

.contact-info-item span,
.contact-info-item a {
  color: var(--white);
  font-weight: 600;
  font-size: .9375rem;
}

.contact-hours,
.contact-note {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 14px 15px;
  border-radius: var(--radius);
  margin-top: 11px;
}

.contact-hours {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.11);
}

.contact-hours i { color: rgba(255,255,255,.55); margin-top: 3px; flex-shrink: 0; }

.contact-hours strong {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: rgba(255,255,255,.60);
  margin-bottom: 2px;
}

.contact-hours span { color: var(--white); font-weight: 500; font-size: .9rem; }

.contact-note {
  background: rgba(62,168,73,.16);
  border: 1px solid rgba(62,168,73,.28);
}

.contact-note i { color: #7de98a; margin-top: 2px; flex-shrink: 0; }

.contact-note p {
  color: rgba(255,255,255,.82);
  font-size: .875rem;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-box { order: -1; }
}

@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }

/* ── Footer ──────────────────────────────── */
.site-footer {
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--gray-200);
}

.footer-grid-4 {
  grid-template-columns: 2fr 1fr 1fr 1fr;
}

.footer-col-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.footer-col-logo img {
  width: 140px;
  height: auto;
  opacity: .85;
  transition: opacity .2s;
}

.footer-col-logo img:hover { opacity: 1; }

.footer-brand img { margin-bottom: 14px; width: 150px; height: auto; }

.footer-brand p {
  font-size: .875rem;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 9px; }

.footer-col ul li {
  font-size: .875rem;
  color: var(--gray-500);
}

.footer-col ul li a {
  color: var(--gray-500);
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--blue); }

.footer-col ul li.with-icon {
  display: flex;
  align-items: center;
  gap: 9px;
}

.footer-col ul li.with-icon i { color: var(--green); width: 15px; }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: .78rem;
  color: var(--gray-400);
}

@media (max-width: 900px) {
  .footer-grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid-4 .footer-brand { grid-column: span 2; }
  .footer-grid-4 .footer-col-logo { justify-content: flex-start; }
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ── Scroll reveal ───────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
