/* ============================================================
   MASTER SOLUTI — ESTILO GLOBAL
   ============================================================ */
/* Força Montserrat em todo o site — sobrescreve tema pai */
html,
body,
body *,
h1, h2, h3, h4, h5, h6,
p, a, span, li, td, th,
input, textarea, select, button {
    font-family: 'Montserrat', sans-serif !important;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #001f36;
  --navy2:  #002d4d;
  --accent: #0077b6;
  --accent2:#00b4d8;
  --light:  #e8f4fd;
  --white:  #ffffff;
  --gray:   #f4f7fa;
  --text:   #1a1a2e;
  --muted:  #5a6a7a;
  --radius: 12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(0,31,54,0.96);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  height: 70px;
  border-bottom: 1px solid rgba(0,119,182,0.3);
}

.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}

.nav-logo img.logo-mark {
  height: 38px; width: auto;
}

.nav-logo-text { color: #fff; }
.nav-logo-text strong { font-size: 18px; font-weight: 800; letter-spacing: 1px; display: block; }
.nav-logo-text span  { font-size: 10px; font-weight: 400; opacity: 0.7; letter-spacing: 2px; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 13px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover { color: var(--accent2); }

.nav-dropdown { position: relative; }
.nav-dropdown {
  position: relative;
}

.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 18px;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 18px 10px 10px 10px;
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s, visibility .2s;
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-dropdown-menu a {
  display: block !important;
  width: 100% !important;
  padding: 10px 14px !important;
  border-radius: 6px !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: rgba(255,255,255,0.85) !important;
  white-space: nowrap !important;
  line-height: 1.4 !important;
  float: none !important;
}

.nav-dropdown-menu a:hover {
  background: rgba(255,255,255,0.06) !important;
  color: var(--accent2) !important;
}

.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 12px !important;
  letter-spacing: 1px;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--accent2) !important; color: #fff !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* ── SLOGAN STRIP ── */
.slogan-strip {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  text-align: center;
  font-size: 13px; font-weight: 600;
  letter-spacing: 1px;
  padding: 10px 5%;
  border-bottom: 1px solid rgba(0,180,216,0.15);
}
.slogan-strip strong { color: var(--accent2); font-weight: 800; }

/* ── GENERIC SECTION ── */
section { padding: 90px 5%; }

.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800; line-height: 1.2; color: var(--navy);
  margin-bottom: 16px; letter-spacing: -0.5px;
}

.section-sub {
  font-size: 1rem; color: var(--muted);
  max-width: 560px; line-height: 1.7;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  color: #fff; text-decoration: none;
  padding: 16px 36px; border-radius: 8px;
  font-weight: 700; font-size: 14px; letter-spacing: 0.5px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(0,119,182,0.4);
  border: none; cursor: pointer; font-family: 'Montserrat', sans-serif;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,119,182,0.5); }

.btn-secondary {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.9); text-decoration: none;
  padding: 14px 32px; border-radius: 8px;
  font-weight: 600; font-size: 14px; letter-spacing: 0.5px;
  transition: border-color .2s, color .2s;
}
.btn-secondary:hover { border-color: var(--accent2); color: var(--accent2); }

.btn-secondary-dark {
  display: inline-block;
  border: 2px solid var(--navy);
  color: var(--navy); text-decoration: none;
  padding: 14px 32px; border-radius: 8px;
  font-weight: 700; font-size: 14px; letter-spacing: 0.5px;
  transition: background .2s, color .2s;
}
.btn-secondary-dark:hover { background: var(--navy); color: #fff; }

/* ── FOOTER ── */
footer { background: var(--navy); padding: 60px 5% 32px; }

.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}

.footer-brand img.logo-mark { height: 36px; margin-bottom: 6px; }
.footer-brand p {
  font-size: 0.85rem; color: rgba(255,255,255,0.45);
  margin-top: 16px; line-height: 1.7; max-width: 260px;
}

.footer-col h4 {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  text-decoration: none; color: rgba(255,255,255,0.55);
  font-size: 0.85rem; transition: color .2s;
}
.footer-col a:hover { color: var(--accent2); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }

.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 14px; text-decoration: none;
  transition: border-color .2s, color .2s;
}
.footer-social a:hover { border-color: var(--accent2); color: var(--accent2); }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform .2s, box-shadow .2s;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,0.5); }
.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }

/* ============================================================
   CARROSSEL DE FOTOS (páginas de serviço)
   ============================================================ */
.carrossel {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--navy);
  box-shadow: 0 20px 50px rgba(0,31,54,0.18);
}

.carrossel-track {
  display: flex;
  transition: transform .5s cubic-bezier(.65,0,.35,1);
}

.carrossel-slide {
  min-width: 100%;
  position: relative;
  aspect-ratio: 16 / 9;
}

.carrossel-slide img {
  width: 100%; height: 100%; object-fit: cover;
}

.carrossel-legenda {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(0deg, rgba(0,31,54,0.85), transparent);
  color: #fff; padding: 28px 28px 18px;
  font-size: 0.9rem; font-weight: 600;
}

.carrossel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--navy);
  transition: background .2s, transform .2s;
  z-index: 2;
}
.carrossel-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.carrossel-arrow.prev { left: 16px; }
.carrossel-arrow.next { right: 16px; }

.carrossel-dots {
  position: absolute; bottom: 16px; right: 20px;
  display: flex; gap: 6px; z-index: 2;
}
.carrossel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none; cursor: pointer; padding: 0;
  transition: background .2s, transform .2s;
}
.carrossel-dot.active { background: #fff; transform: scale(1.3); }

/* ============================================================
   CARROSSEL DE DEPOIMENTOS (home)
   ============================================================ */
.dep-carrossel { position: relative; max-width: 760px; margin: 0 auto; }

.dep-track { overflow: hidden; }
.dep-track-inner { display: flex; transition: transform .5s cubic-bezier(.65,0,.35,1); }

.dep-slide { min-width: 100%; padding: 8px; }

.dep-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px 40px;
  border: 1px solid #e2eaf2;
  position: relative;
  text-align: center;
}

.dep-card::before {
  content: '"';
  position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  font-size: 80px; font-family: Georgia, serif;
  color: var(--light); line-height: 1; z-index: 0;
}

.dep-text {
  font-size: 1rem; color: var(--muted);
  line-height: 1.8; margin-bottom: 28px;
  position: relative; z-index: 1;
}

.dep-author { display: flex; flex-direction: column; align-items: center; gap: 10px; }

.dep-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px; color: #fff; flex-shrink: 0;
  overflow: hidden;
}
.dep-avatar img { width: 100%; height: 100%; object-fit: contain; background: #fff; }

.dep-author strong { display: block; font-size: 0.95rem; font-weight: 700; color: var(--navy); }
.dep-author span   { font-size: 0.8rem; color: var(--muted); }

.dep-carrossel .carrossel-arrow { background: var(--white); box-shadow: 0 4px 16px rgba(0,31,54,0.12); }
.dep-carrossel .carrossel-arrow.prev { left: -20px; }
.dep-carrossel .carrossel-arrow.next { right: -20px; }

.dep-dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.dep-dots .carrossel-dot { background: #cdd9e4; }
.dep-dots .carrossel-dot.active { background: var(--accent); }

@media (max-width: 700px) {
  .dep-carrossel .carrossel-arrow.prev { left: 4px; }
  .dep-carrossel .carrossel-arrow.next { right: 4px; }
  .dep-card { padding: 36px 24px; }
}
