:root {
  --azul: #0d2b5e;
  --azul-medio: #1a3f8f;
  --azul-claro: #e8edf8;
  --rosa: #fe3b5b;
  --azul-novo: #2459bf;
  --rosa-claro: #fe6d85;
  --cinza-bg: #f7f8fc;
  --cinza-texto: #6c757d;
  --branco: #ffffff;
  --fonte-titulo: 'Sora', sans-serif;
  --fonte-corpo: 'DM Sans', sans-serif;
  --cinza-escuro: #202020;
}

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

body {
  font-family: var(--fonte-corpo);
  color: #1a1a2e;
  background: var(--branco);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, .navbar-brand { font-family: var(--fonte-titulo); }

.navbar {
  background: var(--azul-claro);
  border-bottom: 1px solid #eaecf4;
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 1030;
}

.navbar-brand img { height: 50px; }

.navbar-nav .nav-link {
  font-family: var(--fonte-titulo);
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--azul) !important;
  letter-spacing: 0.02em;
  padding: 0.5rem 0.75rem !important;
  transition: color 0.2s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--rosa) !important; }

.navbar-nav .dropdown-menu {
  border: 1px solid #eaecf4;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(13,43,94,0.10);
  padding: 0.5rem 0;
  min-width: 180px;
}

.navbar-nav .dropdown-item {
  font-family: var(--fonte-corpo);
  font-size: 0.875rem;
  color: var(--azul);
  padding: 0.5rem 1.25rem;
}

.navbar-nav .dropdown-item:hover {
  background: var(--azul-claro);
  color: var(--rosa);
}

.btn-whatsapp-nav {
  background: var(--rosa);
  color: var(--branco) !important;
  border-radius: 8px;
  padding: 0.45rem 1.1rem !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.15s;
}

.btn-whatsapp-nav:hover {
  background: #d01d3b !important;
  transform: translateY(-1px);
}

.hero {
  background: var(--branco);
  overflow: hidden;
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(100,100,100,0.18) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(100,100,100,0.2) 0%, transparent 70%);
  bottom: -80px;
  left: -60px;
  border-radius: 50%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(254,59,91,0.15);
  border: 1px solid rgba(254,59,91,0.3);
  color: var(--rosa);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--azul);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero h1 span { color: var(--azul-novo); }

.hero p {
  font-size: 1.1rem;
  color: #595959;
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 2rem;
}

.btn-hero-primary {
  background: var(--rosa);
  color: var(--branco);
  border: none;
  border-radius: 10px;
  padding: 0.85rem 2rem;
  font-family: var(--fonte-titulo);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(232,80,10,0.35);
}

.btn-hero-primary:hover {
  background: #d01d3b;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(254,59,91,0.45);
  color: var(--branco);
}

.btn-hero-secondary {
  background: var(--azul);
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 10px;
  padding: 0.85rem 2rem;
  font-family: var(--fonte-titulo);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.btn-hero-secondary:hover {
  box-shadow: 0 8px 30px rgba(13,43,94,0.45);
  transform: translateY(-2px);
  background: var(--azul-medio);
  color: var(--branco);
}

.lp-hero .btn-hero-secondary {
  background: transparent;
  color: var(--azul);
  border: 1.5px solid rgba(13,43,94,0.25);
}

.lp-hero .btn-hero-secondary:hover {
  background: var(--azul);
  color: var(--branco);
  border-color: var(--azul);
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.hero-stat-num {
  font-family: var(--fonte-titulo);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--azul);
  line-height: 1;
}

.hero-stat-num span { color: var(--azul-novo); }

.hero-stat-label {
  font-size: 0.8rem;
  color: #595959;
  margin-top: 0.3rem;
}

.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-float {
  background: rgba(100,100,100,0.08);
  border: 1px solid rgba(50,50,50,0.12);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 1.5rem;
  width: 100%;
  max-width: 380px;
}

.hero-card-float .icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--azul-novo);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: white;
}

.hero-service-list { list-style: none; padding: 0; margin: 1.25rem 0 0 0; }

.hero-service-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
  color: #595959;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.hero-service-list li:last-child { border-bottom: none; }
.hero-service-list li i { color: var(--azul-novo); font-size: 1rem; }

.brands-band {
  background: var(--azul-claro);
  padding: 1.5rem 0;
  border-bottom: 1px solid #dde3f0;
}

.brands-band .label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cinza-texto);
  white-space: nowrap;
}

.brand-logo {
  opacity: 0.45;
  filter: grayscale(1);
  transition: opacity 0.2s, filter 0.2s;
  max-height: 32px;
}

.brand-logo:hover { opacity: 0.85; filter: grayscale(0); }

section { padding: 80px 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rosa);
  margin-bottom: 0.75rem;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--rosa);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--azul);
  line-height: 1.2;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--cinza-texto);
  line-height: 1.75;
  max-width: 560px;
}

.services { background: var(--cinza-bg); }

.service-card {
  background: var(--branco);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  border: 1px solid #eaecf4;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--azul-novo);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(13,43,94,0.12);
  border-color: #c5cde6;
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--azul-claro);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--azul);
  margin-bottom: 1.25rem;
  transition: background 0.25s, color 0.25s;
}

.service-card:hover .service-icon {
  background: var(--azul-novo);
  color: var(--branco);
}

.service-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--azul);
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--cinza-texto);
  line-height: 1.65;
  margin: 0 0 1.25rem 0;
}

.service-card .link-arrow {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--azul-novo);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.2s;
}

.service-card:hover .link-arrow { gap: 0.6rem; }

.porque-locar { background: var(--branco); }

.porque-locar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #1e3a6e;
}

.pq-card {
  background: #0f2550;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.25rem;
  gap: 1rem;
  border: 1px solid #1e3a6e;
  transition: background 0.22s, transform 0.22s;
  cursor: default;
}

.pq-card:hover {
  background: #142d60;
  transform: scale(1.03);
  z-index: 1;
  position: relative;
}

.pq-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pq-icon svg { width: 64px; height: 64px; }

.pq-card span {
  font-family: var(--fonte-corpo);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.45;
}

.porque { background: var(--azul); }

.porque .section-title { color: var(--branco); }
.porque .section-sub { color: rgba(255,255,255,0.65); }
.porque .section-label { color: #ffb38a; }
.porque .section-label::before { background: #ffb38a; }

.feature-item {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  margin-bottom: 1.75rem;
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(232,80,10,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--rosa);
  flex-shrink: 0;
}

.feature-item h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--branco);
  margin-bottom: 0.25rem;
}

.feature-item p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

.porque-card-destaque {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 2.5rem;
}

.num-destaque {
  font-family: var(--fonte-titulo);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--branco);
  line-height: 1;
}

.num-destaque span { color: var(--azul-novo); }

.toner-cta {
  background: linear-gradient(135deg, #edfbff 0%, #d8e8fd 100%);
  border-radius: 20px;
  border: 1px solid #a8b9fa;
}

.sobre-section { background: var(--cinza-bg); }

.sobre-num-card {
  text-align: center;
  padding: 1.5rem;
  background: var(--branco);
  border-radius: 14px;
  border: 1px solid #eaecf4;
}

.sobre-num-card .numero {
  font-family: var(--fonte-titulo);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--azul);
  line-height: 1;
}

.sobre-num-card .numero span { color: var(--azul-novo); }

.sobre-num-card .legenda {
  font-size: 0.82rem;
  color: var(--cinza-texto);
  margin-top: 0.35rem;
}

.cta-final {
  background: var(--azul);
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,80,10,0.2) 0%, transparent 65%);
  top: -150px; right: -100px;
  border-radius: 50%;
}

.cta-final h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--branco);
}

.cta-final p { color: rgba(255,255,255,0.65); font-size: 1.05rem; }

.btn-cta-rosa {
  background: var(--rosa);
  color: var(--branco);
  border: none;
  border-radius: 10px;
  padding: 0.9rem 2.2rem;
  font-family: var(--fonte-titulo);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 20px rgba(232,80,10,0.35);
}

.btn-cta-rosa:hover {
  background: #d01d3b;
  transform: translateY(-2px);
  color: var(--branco);
}

.btn-cta-outline {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 10px;
  padding: 0.9rem 2.2rem;
  font-family: var(--fonte-titulo);
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
}

.btn-cta-outline:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.07);
  color: var(--branco);
}

footer {
  background: #08183a;
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
}

footer .footer-logo img { height: 70px; }

footer h6 {
  font-family: var(--fonte-titulo);
  font-weight: 600;
  color: var(--branco);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

footer a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

footer a:hover { color: var(--rosa); }
footer hr { border-color: rgba(255,255,255,0.08); margin: 2rem 0 1.5rem; }
.footer-bottom { font-size: 0.8rem; color: rgba(255,255,255,0.35); }

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 1050;
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
  color: white;
}

.text-rosa { color: var(--rosa) !important; }
.bg-azul { background: var(--azul) !important; }

/* ─────────────── ESTILOS ADICIONAIS PARA PÁGINAS INTERNAS ─────────────── */

.page-hero {
  background: var(--azul-claro);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(254,59,91,0.10) 0%, transparent 70%);
  top: -120px; right: -80px;
  border-radius: 50%;
}

.breadcrumb-custom {
  font-size: 0.85rem;
  color: var(--cinza-texto);
  margin-bottom: 1rem;
}

.breadcrumb-custom a { color: var(--azul); text-decoration: none; }
.breadcrumb-custom a:hover { color: var(--rosa); }
.breadcrumb-custom i { font-size: 0.7rem; margin: 0 0.4rem; }

.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  color: var(--cinza-escuro);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.page-hero h1 span { color: var(--azul-novo); }

.page-hero p.lead-text {
  font-size: 1.1rem;
  color: #595959;
  line-height: 1.75;
  max-width: 620px;
}

.lp-hero {
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.lp-hero h1 { color: var(--azul); }
.lp-hero h1 span { color: var(--azul-novo); }
.lp-hero p.lead-text { color: #595959; }

.lp-hero-impressoras {
  background: linear-gradient(135deg, #eef2fb 0%, #e3eaf9 50%, #f3e9ef 100%);
}

.lp-hero-impressoras::before {
  content: '';
  position: absolute;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(26,63,143,0.14) 0%, transparent 70%);
  top: -160px; right: -100px;
  border-radius: 50%;
}

.lp-hero-impressoras::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(115deg, rgba(13,43,94,0.05) 0px, rgba(13,43,94,0.05) 2px, transparent 2px, transparent 46px);
  pointer-events: none;
}

.lp-hero-computadores {
  background: linear-gradient(150deg, #eef2fb 0%, #e7ecfa 55%, #ece6fa 100%);
}

.lp-hero-computadores::before {
  content: '';
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  box-shadow:
    60px 50px 0 2px rgba(26,63,143,0.18),
    180px 120px 0 2px rgba(254,59,91,0.16),
    320px 40px 0 2px rgba(26,63,143,0.16),
    450px 160px 0 2px rgba(26,63,143,0.14),
    560px 70px 0 2px rgba(254,59,91,0.14),
    250px 220px 0 2px rgba(26,63,143,0.12),
    100px 200px 0 2px rgba(26,63,143,0.14),
    400px 250px 0 2px rgba(254,59,91,0.12);
  top: 0; left: 0;
  pointer-events: none;
}

.lp-hero-termicas {
  background: linear-gradient(120deg, #eef2fb 0%, #f7eef0 55%, #fde4e9 100%);
}

.lp-hero-termicas::before {
  content: '';
  position: absolute;
  width: 440px; height: 440px;
  background: radial-gradient(circle, rgba(254,59,91,0.16) 0%, transparent 68%);
  bottom: -180px; right: -100px;
  border-radius: 50%;
}

.lp-hero-termicas::after {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(26,63,143,0.10) 0%, transparent 70%);
  top: -120px; left: -60px;
  border-radius: 50%;
}

.lp-hero-scanners {
  background: linear-gradient(160deg, #eef3fa 0%, #e6edf9 45%, #dde6f5 100%);
}

.lp-hero-scanners::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; right: 8%;
  width: 2px;
  background: rgba(13,43,94,0.08);
  box-shadow: 60px 0 0 rgba(13,43,94,0.06), 120px 0 0 rgba(13,43,94,0.04), -60px 0 0 rgba(13,43,94,0.04);
}

.lp-hero-scanners::after {
  content: '';
  position: absolute;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(26,63,143,0.12) 0%, transparent 70%);
  top: -130px; left: -90px;
  border-radius: 50%;
}

.lp-hero h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: var(--branco);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.lp-hero h1 span { color: var(--azul-novo); }

.lp-hero p.lead-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 2rem;
}

.lp-hero-img {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.lp-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.beneficio-card {
  background: var(--branco);
  border: 1px solid #eaecf4;
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.beneficio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(13,43,94,0.10);
  border-color: #c5cde6;
}

.beneficio-icon {
  width: 56px;
  height: 56px;
  background: var(--azul-claro);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--azul);
  margin-bottom: 1.25rem;
}

.beneficio-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--azul);
  margin-bottom: 0.5rem;
}

.beneficio-card p {
  font-size: 0.9rem;
  color: var(--cinza-texto);
  line-height: 1.65;
  margin: 0;
}

.como-funciona-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.como-funciona-num {
  width: 48px;
  height: 48px;
  background: var(--rosa);
  color: var(--branco);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fonte-titulo);
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.como-funciona-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--azul);
  margin-bottom: 0.4rem;
}

.como-funciona-item p {
  font-size: 0.9rem;
  color: var(--cinza-texto);
  line-height: 1.65;
  margin: 0;
}

.modelo-card {
  background: var(--branco);
  border: 1px solid #eaecf4;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.modelo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(13,43,94,0.10);
  border-color: #c5cde6;
}

.modelo-card img { width: 100%; height: 200px; object-fit: cover; display: block; }

.modelo-card-body { padding: 1.5rem; }

.modelo-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--azul);
  margin-bottom: 0.4rem;
}

.modelo-card p {
  font-size: 0.875rem;
  color: var(--cinza-texto);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.depoimento-card {
  background: var(--branco);
  border: 1px solid #eaecf4;
  border-radius: 16px;
  padding: 1.75rem;
  height: 100%;
}

.depoimento-stars { color: #ffb400; font-size: 0.9rem; margin-bottom: 0.75rem; }

.depoimento-card p.texto {
  font-size: 0.92rem;
  color: #595959;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.depoimento-autor { display: flex; align-items: center; gap: 0.75rem; }

.depoimento-autor img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.depoimento-autor .nome {
  font-family: var(--fonte-titulo);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--azul);
}

.depoimento-autor .empresa {
  font-size: 0.8rem;
  color: var(--cinza-texto);
}

.faq-section { background: var(--cinza-bg); }

.accordion-item {
  border: 1px solid #eaecf4;
  border-radius: 12px !important;
  margin-bottom: 0.85rem;
  overflow: hidden;
}

.accordion-button {
  font-family: var(--fonte-titulo);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--azul);
  background: var(--branco);
  padding: 1.1rem 1.5rem;
}

.accordion-button:not(.collapsed) {
  color: var(--rosa);
  background: var(--branco);
  box-shadow: none;
}

.accordion-button:focus { box-shadow: none; border-color: #eaecf4; }
.accordion-button::after { flex-shrink: 0; }

.accordion-body {
  font-size: 0.9rem;
  color: var(--cinza-texto);
  line-height: 1.75;
  padding: 0 1.5rem 1.25rem;
}

.locacao-item-card {
  background: var(--branco);
  border: 1px solid #eaecf4;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.locacao-item-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(13,43,94,0.12);
  border-color: #c5cde6;
  color: inherit;
}

.locacao-item-card img { width: 100%; height: 220px; object-fit: cover; display: block; }

.locacao-item-body { padding: 1.75rem; flex-grow: 1; display: flex; flex-direction: column; }

.locacao-item-card h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--azul);
  margin-bottom: 0.6rem;
}

.locacao-item-card p {
  font-size: 0.9rem;
  color: var(--cinza-texto);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.contato-card {
  background: var(--branco);
  border: 1px solid #eaecf4;
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.contato-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(13,43,94,0.10);
  border-color: #c5cde6;
}

.contato-icon {
  width: 64px;
  height: 64px;
  background: var(--azul-claro);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--azul);
  margin: 0 auto 1.25rem;
}

.contato-card h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--azul);
  margin-bottom: 0.5rem;
}

.contato-card p {
  font-size: 0.9rem;
  color: var(--cinza-texto);
  margin-bottom: 1.25rem;
}

.contato-map {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #eaecf4;
  height: 380px;
}

.contato-map iframe { width: 100%; height: 100%; border: 0; display: block; }

.valores-card {
  background: var(--branco);
  border: 1px solid #eaecf4;
  border-radius: 16px;
  padding: 1.75rem;
  height: 100%;
}

.valores-icon {
  width: 48px;
  height: 48px;
  background: var(--azul-claro);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--azul);
  margin-bottom: 1rem;
}

.valores-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--azul);
  margin-bottom: 0.5rem;
}

.valores-card p {
  font-size: 0.875rem;
  color: var(--cinza-texto);
  line-height: 1.65;
  margin: 0;
}

.timeline-item {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 2rem;
  position: relative;
}

.timeline-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 50px;
  bottom: 0;
  width: 2px;
  background: #dde3f0;
}

.timeline-dot {
  width: 48px;
  height: 48px;
  background: var(--azul);
  color: var(--branco);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fonte-titulo);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.95rem;
}

.timeline-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--azul);
  margin-bottom: 0.35rem;
}

.timeline-content p {
  font-size: 0.9rem;
  color: var(--cinza-texto);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 767px) {
  section { padding: 56px 0; }
  .hero { min-height: auto; padding: 64px 0 48px; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .hero-visual { margin-top: 2.5rem; }
  .porque-locar-grid { grid-template-columns: repeat(2, 1fr); }
  .pq-card { padding: 1.5rem 0.75rem; }
  .lp-hero { padding: 48px 0; }
  .lp-hero-img { margin-top: 2rem; }
}







.page-hero-centered {
  background: linear-gradient(180deg, var(--azul-claro) 0%, var(--branco) 100%);
  text-align: center;
}
.page-hero-centered .breadcrumb-custom {
  align-items: center;
}





/* Ajuste do Badge do Hero */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--azul-claro);
  color: var(--azul);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--fonte-titulo);
}

.hero-badge i {
  color: var(--azul);
}

/* Botão Secundário do Hero */
.btn-hero-secondary {
  background: transparent;
  color: var(--grafite);
  border: 1px solid var(--cinza-borda);
  border-radius: 10px;
  padding: 0.85rem 1.75rem;
  font-family: var(--fonte-titulo);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}

.btn-hero-secondary:hover {
  background: var(--branco);
  border-color: var(--azul);
  color: var(--azul);
  transform: translateY(-2px);
}

/* Moldura da imagem unificada com as bordas do site */
.lp-hero-img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(30, 41, 59, 0.06);
  border: 1px solid var(--cinza-borda);
  background: var(--branco);
}

.lp-hero-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.lp-hero-img:hover img {
  transform: scale(1.02);
}