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

:root {
  --blue:    #1c3fa8;
  --blue-lt: #2563eb;
  --dark:    #0b0f1a;
  --darker:  #060910;
  --mid:     #111827;
  --light:   #f5f7ff;
  --white:   #ffffff;
  --grey:    #9ca3af;
  --gold:    #d4af37;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
}

/* ─── TOP BAR ─────────────────────────────── */
.top-bar { background: var(--darker); border-bottom: 1px solid rgba(28,63,168,.4); padding: 7px 0; }
.top-bar .inner {
  max-width: 1200px; margin: auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 6px;
}
.top-bar a, .top-bar span {
  color: var(--grey); font-size: 13px; text-decoration: none;
  display: flex; align-items: center; gap: 5px; transition: color .2s;
}
.top-bar a:hover { color: var(--white); }
.top-bar .contacts { display: flex; gap: 22px; flex-wrap: wrap; }
.top-bar svg { flex-shrink: 0; }

/* ─── NAVBAR ──────────────────────────────── */
nav {
  background: var(--dark); position: sticky; top: 0; z-index: 1000;
  border-bottom: 2px solid var(--blue); box-shadow: 0 4px 24px rgba(0,0,0,.7);
}
.nav-inner {
  max-width: 1200px; margin: auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 74px;
}
.nav-logo img { height: 58px; display: block; }
.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  color: var(--white); text-decoration: none; font-family: 'Montserrat', sans-serif;
  font-weight: 600; font-size: 14px; letter-spacing: .5px; padding: 10px 16px;
  border-radius: 4px; transition: background .2s, color .2s; display: flex; align-items: center; gap: 5px;
}
.nav-links > li > a:hover,
.nav-links > li:hover > a,
.nav-links > li.is-hovered > a { background: var(--blue); color: var(--white); }
.nav-links > li > a .arrow { font-size: 10px; transition: transform .2s; }
.nav-links > li:hover > a .arrow,
.nav-links > li.is-hovered > a .arrow { transform: rotate(180deg); }

/* ─── MEGA MENU DROPDOWN ─────────────────── */
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  width: min(680px, 95vw);
  background: var(--mid);
  border: 1px solid rgba(28,63,168,.45);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,.85), 0 0 0 1px rgba(28,63,168,.15);
  z-index: 999;
  padding: 16px;
  overflow: visible;
}
/* seta decorativa */
.dropdown::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px; height: 7px;
  background: var(--mid);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  border-top: 1px solid rgba(28,63,168,.45);
}
.nav-links > li.is-hovered .dropdown { display: block; }

.dropdown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 11px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .18s;
  border-bottom: none;
}
.dropdown-item:hover { background: rgba(28,63,168,.25); }
.dropdown-item-icon {
  flex-shrink: 0;
  width: 34px; height: 34px;
  background: rgba(28,63,168,.2);
  border: 1px solid rgba(28,63,168,.3);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: background .18s, border-color .18s;
}
.dropdown-item:hover .dropdown-item-icon {
  background: rgba(28,63,168,.45);
  border-color: rgba(37,99,235,.7);
}
.dropdown-item-icon svg { width: 16px; height: 16px; color: var(--blue-lt); }
.dropdown-item-text h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 12.5px; font-weight: 700;
  color: var(--white); line-height: 1.3; margin-bottom: 2px;
}
.dropdown-item-text p {
  font-size: 11px; color: #6b7280; line-height: 1.4;
}
.dropdown-item:hover .dropdown-item-text h4 { color: var(--blue-lt); }

.dropdown-footer {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: space-between;
}
.dropdown-footer a {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 8px;
  text-decoration: none; font-size: 13px; font-weight: 700;
  letter-spacing: .3px; transition: background .18s;
  border-bottom: none !important;
}
.dropdown-footer .df-wa {
  color: #25d366; background: rgba(37,211,102,.08); border: 1px solid rgba(37,211,102,.2);
}
.dropdown-footer .df-wa:hover { background: rgba(37,211,102,.18); }
.dropdown-footer .df-all {
  color: var(--grey); font-size: 12px; font-weight: 500;
}
.dropdown-footer .df-all:hover { color: var(--white); background: rgba(255,255,255,.06); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.hamburger span {
  display: block; width: 26px; height: 2px; background: var(--white);
  border-radius: 2px; transition: all .3s;
}

/* ─── VIDEO PARALLAX ────────────────────── */
.vp { position: relative; height: 480px; overflow: hidden; }
.vp-video {
  position: absolute; top: -20%; left: 0; width: 100%; height: 140%;
  object-fit: cover; will-change: transform; pointer-events: none;
}
.vp-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6,9,16,.78) 0%, rgba(11,15,26,.55) 50%, rgba(28,63,168,.22) 100%);
  z-index: 1;
}
.vp-content {
  position: relative; z-index: 2; height: 100%;
  display: flex; align-items: center; justify-content: center;
  text-align: center; flex-direction: column; gap: 12px; padding: 40px 24px;
}
.vp-content h2 {
  font-family: 'Montserrat', sans-serif; font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 800; text-shadow: 0 2px 20px rgba(0,0,0,.9); line-height: 1.2;
}
.vp-content h2 span { color: var(--blue-lt); }
.vp-content p { color: #cbd5e1; font-size: clamp(15px, 1.8vw, 18px); max-width: 580px; line-height: 1.7; }
.vp-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(28,63,168,.25); border: 1px solid rgba(28,63,168,.6);
  color: var(--blue-lt); font-family: 'Montserrat', sans-serif; font-size: 11px;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 18px; border-radius: 50px; backdrop-filter: blur(4px);
}

/* ─── HERO ────────────────────────────────── */
#inicio {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.hero-video {
  position: absolute; top: -10%; left: 0; width: 100%; height: 120%;
  object-fit: cover; will-change: transform; pointer-events: none;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6,9,16,.88) 0%, rgba(11,15,26,.75) 50%, rgba(28,63,168,.25) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 40px 24px; max-width: 820px; }
.hero-logo { margin-bottom: 32px; }
.hero-logo img { height: 120px; filter: drop-shadow(0 0 24px rgba(28,63,168,.8)); }
.hero-content h1 {
  font-family: 'Montserrat', sans-serif; font-size: clamp(32px, 5vw, 58px);
  font-weight: 800; line-height: 1.15; margin-bottom: 20px; text-shadow: 0 2px 20px rgba(0,0,0,.9);
}
.hero-content h1 span { color: var(--blue-lt); }
.hero-content p { font-size: clamp(16px, 2vw, 19px); color: #cbd5e1; margin-bottom: 40px; line-height: 1.7; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn-primary {
  background: var(--blue); color: var(--white); padding: 15px 36px; border-radius: 50px;
  text-decoration: none; font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 15px; letter-spacing: .5px; transition: background .25s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(28,63,168,.5);
}
.btn-primary:hover { background: var(--blue-lt); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,99,235,.6); }
.btn-outline {
  background: transparent; color: var(--white); padding: 14px 36px; border-radius: 50px;
  border: 2px solid rgba(255,255,255,.6); text-decoration: none;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 15px;
  letter-spacing: .5px; transition: all .25s;
}
.btn-outline:hover { background: var(--white); color: var(--dark); border-color: var(--white); transform: translateY(-2px); }

.scroll-down {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  color: rgba(255,255,255,.5); font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  animation: bounce 2s infinite;
}
.scroll-down svg { opacity: .5; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ─── SECTION HELPERS ─────────────────────── */
section { padding: 90px 24px; }
.section-inner { max-width: 1200px; margin: auto; }
.section-tag {
  display: inline-block; background: rgba(28,63,168,.15); border: 1px solid rgba(28,63,168,.5);
  color: var(--blue-lt); font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; padding: 5px 16px; border-radius: 50px; margin-bottom: 16px;
}
.section-title {
  font-family: 'Montserrat', sans-serif; font-size: clamp(28px, 4vw, 42px);
  font-weight: 800; line-height: 1.2; margin-bottom: 16px;
}
.section-title span { color: var(--blue-lt); }
.section-sub { color: var(--grey); font-size: 16px; line-height: 1.7; max-width: 600px; }
.divider {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--blue-lt));
  border-radius: 2px; margin: 20px 0 40px;
}

/* ─── SOBRE NÓS ───────────────────────────── */
#sobre { background: var(--mid); }
.sobre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.sobre-img {
  position: relative; border-radius: 12px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
}
.sobre-img img { width: 100%; height: 420px; object-fit: cover; display: block; transition: transform .5s; }
.sobre-img:hover img { transform: scale(1.04); }
.sobre-img::after {
  content: ''; position: absolute; inset: 0;
  border: 2px solid rgba(28,63,168,.4); border-radius: 12px; pointer-events: none;
}
.sobre-text p { color: #94a3b8; font-size: 15.5px; line-height: 1.8; margin-bottom: 16px; }
.checklist {
  list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; margin-top: 28px;
}
.checklist li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: #cbd5e1; font-weight: 500; }
.checklist li .check {
  flex-shrink: 0; width: 20px; height: 20px; background: var(--blue); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.checklist li .check svg { width: 11px; height: 11px; }

/* ─── STATS BAR ───────────────────────────── */
.stats-bar { background: var(--blue); padding: 40px 24px; }
.stats-inner {
  max-width: 1200px; margin: auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center;
}
.stat-item strong { display: block; font-family: 'Montserrat', sans-serif; font-size: 36px; font-weight: 800; }
.stat-item span { font-size: 14px; opacity: .85; }

/* ─── SERVIÇOS ────────────────────────────── */
#servicos { background: var(--dark); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 50px; }
.service-card {
  background: var(--mid); border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(28,63,168,.2); cursor: pointer;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.service-card:hover {
  transform: translateY(-6px); border-color: var(--blue);
  box-shadow: 0 16px 48px rgba(28,63,168,.3);
}
.service-card-img { width: 100%; height: 200px; object-fit: cover; display: block; transition: transform .4s; }
.service-card:hover .service-card-img { transform: scale(1.05); }
.service-card-img-wrap { overflow: hidden; }
.service-card-body { padding: 24px; }
.service-card-icon {
  width: 42px; height: 42px; background: rgba(28,63,168,.2); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.service-card-icon svg { width: 22px; height: 22px; color: var(--blue-lt); }
.service-card h3 { font-family: 'Montserrat', sans-serif; font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.service-card p { color: var(--grey); font-size: 14px; line-height: 1.7; margin-bottom: 18px; }
.service-card a {
  color: var(--blue-lt); text-decoration: none; font-size: 13.5px; font-weight: 700;
  letter-spacing: .5px; display: flex; align-items: center; gap: 5px; transition: gap .2s;
}
.service-card a:hover { gap: 10px; }

/* ─── GALERIA ─────────────────────────────── */
#galeria { background: var(--mid); padding-bottom: 0; }
.gallery-intro { margin-bottom: 40px; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; }
.gallery-item { overflow: hidden; position: relative; }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s; filter: brightness(.9); }
.gallery-item:hover img { transform: scale(1.08); filter: brightness(1); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.5) 0%, transparent 50%); pointer-events: none;
}

/* ─── RESERVA / CTA BAND ──────────────────── */
#reserva {
  background: url('bg_menu_2.jpg') center center / cover no-repeat;
  position: relative; text-align: center; padding: 100px 24px;
}
#reserva::before { content: ''; position: absolute; inset: 0; background: rgba(6,9,16,.85); }
#reserva .section-inner { position: relative; z-index: 2; }
#reserva .section-title { font-size: clamp(28px, 4vw, 44px); }
#reserva p { color: #94a3b8; font-size: 17px; margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.7; }

/* ─── CONTATO ─────────────────────────────── */
#contato { background: var(--dark); }
.contato-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; gap: 18px; align-items: flex-start; }
.contact-icon {
  flex-shrink: 0; width: 48px; height: 48px; background: rgba(28,63,168,.2);
  border: 1px solid rgba(28,63,168,.4); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.contact-icon svg { width: 22px; height: 22px; color: var(--blue-lt); }
.contact-item h4 {
  font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; color: var(--blue-lt); margin-bottom: 4px;
}
.contact-item a, .contact-item p {
  color: #94a3b8; text-decoration: none; font-size: 15px; line-height: 1.6; transition: color .2s;
}
.contact-item a:hover { color: var(--white); }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form input, .contact-form textarea {
  background: var(--mid); border: 1px solid rgba(28,63,168,.3); border-radius: 8px;
  padding: 14px 18px; color: var(--white); font-size: 14.5px; font-family: 'Open Sans', sans-serif;
  width: 100%; outline: none; transition: border-color .2s;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #4b5563; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--blue-lt); }
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form button {
  background: var(--blue); color: var(--white); border: none; padding: 15px 32px;
  border-radius: 8px; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 15px;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background .2s, transform .2s;
}
.contact-form button:hover { background: var(--blue-lt); transform: translateY(-2px); }

/* ─── FOOTER ──────────────────────────────── */
footer { background: var(--darker); border-top: 2px solid var(--blue); padding: 60px 24px 0; }
.footer-inner {
  max-width: 1200px; margin: auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px;
}
.footer-brand img { height: 68px; margin-bottom: 18px; }
.footer-brand p { color: #6b7280; font-size: 14px; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--blue-lt); margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  color: #6b7280; text-decoration: none; font-size: 14px;
  transition: color .2s, padding-left .2s; display: block;
}
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }
.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.footer-contact-list li {
  display: flex; align-items: flex-start; gap: 10px;
  color: #6b7280; font-size: 13.5px; line-height: 1.5;
}
.footer-contact-list li svg { flex-shrink: 0; color: var(--blue-lt); margin-top: 2px; }
.footer-contact-list li a { color: #6b7280; text-decoration: none; transition: color .2s; }
.footer-contact-list li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06); padding: 18px 0;
  max-width: 1200px; margin: auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { color: #374151; font-size: 13px; }
.footer-bottom a { color: #4b5563; text-decoration: none; transition: color .2s; }
.footer-bottom a:hover { color: var(--blue-lt); }
.footer-made-by { display: flex; align-items: center; gap: 0; }
.footer-webvel-link { display: inline-flex; align-items: center; margin-left: 18px; }
.footer-webvel-link img { height: 18px; width: auto; display: block; }

/* ─── WHATSAPP FLOAT ──────────────────────── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 9000;
  width: 58px; height: 58px; background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5); text-decoration: none;
  transition: transform .25s, box-shadow .25s;
}
.wa-float::before, .wa-float::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: #25d366; z-index: -1; animation: wa-ring 2.4s ease-out infinite;
}
.wa-float::after { animation-delay: 1.2s; }
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,.7); }
@keyframes wa-ring {
  0%   { transform: scale(1); opacity: .7; }
  100% { transform: scale(2); opacity: 0; }
}
.wa-float svg { width: 30px; height: 30px; }

/* ─── MOBILE MENU ─────────────────────────── */
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--darker); z-index: 999; flex-direction: column;
  padding: 90px 30px 40px; gap: 6px; overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--white); text-decoration: none; font-family: 'Montserrat', sans-serif;
  font-weight: 600; font-size: 17px; padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.08); transition: color .2s;
}
.mobile-menu a.sub { font-size: 14px; color: var(--grey); padding: 8px 0 8px 16px; }
.mobile-menu a.sub:hover, .mobile-menu a:hover { color: var(--blue-lt); }
.mobile-menu .close-btn {
  position: absolute; top: 20px; right: 24px; background: none; border: none;
  color: var(--white); font-size: 32px; cursor: pointer; line-height: 1;
}

/* ─── SERVICE PAGE ─────────────────────────── */
.breadcrumb-bar {
  background: var(--darker); padding: 12px 24px;
  border-bottom: 1px solid rgba(28,63,168,.2);
  position: relative;
  z-index: 1;
}
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--grey); }
.breadcrumb a { color: var(--grey); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--blue-lt); }

.sp-hero {
  position: relative; height: 500px;
  background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden;
}
.sp-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6,9,16,.88) 0%, rgba(11,15,26,.75) 50%, rgba(28,63,168,.25) 100%);
}
.sp-hero-content {
  position: relative; z-index: 2; padding: 40px 24px; max-width: 800px;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.sp-hero-content h1 {
  font-family: 'Montserrat', sans-serif; font-size: clamp(30px, 5vw, 52px);
  font-weight: 800; line-height: 1.15; text-shadow: 0 2px 20px rgba(0,0,0,.9);
}
.sp-hero-content h1 span { color: var(--blue-lt); }
.sp-hero-content p { color: #cbd5e1; font-size: clamp(15px, 2vw, 18px); max-width: 600px; line-height: 1.7; }

.sp-content { background: var(--dark); }
.sp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.sp-text p { color: #94a3b8; font-size: 15.5px; line-height: 1.8; margin-bottom: 14px; }
.sp-img { border-radius: 12px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.6); position: relative; }
.sp-img img { width: 100%; height: 420px; object-fit: cover; display: block; transition: transform .5s; }
.sp-img:hover img { transform: scale(1.04); }
.sp-img::after {
  content: ''; position: absolute; inset: 0;
  border: 2px solid rgba(28,63,168,.4); border-radius: 12px; pointer-events: none;
}
.sp-benefits {
  list-style: none; display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px 20px; margin-top: 28px;
}
.sp-benefits li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: #cbd5e1; font-weight: 500;
}
.sp-benefits li::before {
  content: '✓'; flex-shrink: 0; min-width: 20px; width: 20px; height: 20px;
  background: var(--blue); border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  color: white; font-size: 11px; font-weight: bold; margin-top: 1px;
  text-align: center; line-height: 20px;
}

.sp-cta { background: var(--blue); padding: 70px 24px; text-align: center; }
.sp-cta h2 {
  font-family: 'Montserrat', sans-serif; font-size: clamp(22px, 3vw, 34px);
  font-weight: 800; margin-bottom: 12px;
}
.sp-cta p {
  color: rgba(255,255,255,.85); font-size: 16px; margin-bottom: 30px; line-height: 1.6;
  max-width: 500px; margin-left: auto; margin-right: auto;
}
.sp-cta .btn-primary {
  background: var(--white); color: var(--blue); box-shadow: 0 4px 20px rgba(0,0,0,.3);
}
.sp-cta .btn-primary:hover {
  background: var(--light); color: var(--blue); box-shadow: 0 8px 28px rgba(0,0,0,.4);
}

.sp-others { background: var(--mid); }
.sp-others-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px;
}
.sp-other-card {
  background: var(--dark); border: 1px solid rgba(28,63,168,.2); border-radius: 10px;
  padding: 20px; text-decoration: none; display: flex; flex-direction: column; gap: 10px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.sp-other-card:hover {
  border-color: var(--blue); transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(28,63,168,.25);
}
.sp-other-icon {
  width: 40px; height: 40px; background: rgba(28,63,168,.2);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
}
.sp-other-icon svg { width: 20px; height: 20px; color: var(--blue-lt); }
.sp-other-card h4 {
  font-family: 'Montserrat', sans-serif; font-size: 13.5px;
  font-weight: 700; color: var(--white); line-height: 1.3;
}
.sp-other-card span { font-size: 12px; color: var(--blue-lt); font-weight: 600; letter-spacing: .5px; }

/* ─── FADE-IN SEÇÕES ──────────────────────── */
.fade-up { opacity: 0; transform: translateY(36px); transition: opacity .75s ease, transform .75s ease; }
.fade-up.is-visible { opacity: 1; transform: translateY(0); }

/* ─── CARROSSEL ────────────────────────────── */
.carousel-section { padding: 60px 0 50px; background: var(--darker); }
.carousel-section .section-inner { padding: 0 20px; }
.carousel-wrap { position: relative; margin-top: 32px; overflow: hidden; }
.carousel-track { display: flex; gap: 16px; padding-left: 20px; }
.carousel-slide { flex: 0 0 300px; height: 220px; border-radius: 12px; overflow: hidden; }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.carousel-slide:hover img { transform: scale(1.06); }
.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(6,9,16,.8); border: 1px solid rgba(255,255,255,.15); color: #fff; width: 44px; height: 44px; border-radius: 50%; cursor: pointer; font-size: 28px; line-height: 1; display: flex; align-items: center; justify-content: center; z-index: 3; backdrop-filter: blur(4px); transition: background .2s, border-color .2s; }
.carousel-btn:hover { background: var(--blue); border-color: var(--blue); }
.car-prev { left: 8px; }
.car-next { right: 8px; }
@media (max-width: 600px) {
  .carousel-slide { flex: 0 0 240px; height: 170px; }
}

/* ─── MAPA ────────────────────────────────── */
.mapa-section { padding: 60px 20px; background: var(--dark); }
.mapa-wrap { margin-top: 32px; border-radius: 14px; overflow: hidden; border: 1px solid rgba(255,255,255,.08); box-shadow: 0 8px 40px rgba(0,0,0,.4); }
.mapa-wrap iframe { display: block; width: 100%; height: 440px; }

/* ─── FAQ ─────────────────────────────────── */
.sp-faq { padding: 60px 20px; background: var(--darker); }
.sp-faq .section-inner { max-width: 800px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
.faq-item { background: var(--dark); border: 1px solid rgba(255,255,255,.08); border-radius: 10px; overflow: hidden; }
.faq-item summary {
  cursor: pointer; padding: 18px 22px; font-family: 'Montserrat', sans-serif;
  font-weight: 600; font-size: 15px; color: var(--white); list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  transition: color .2s; user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 22px; color: var(--blue-lt); flex-shrink: 0; transition: transform .3s; line-height: 1; }
.faq-item[open] > summary { color: var(--blue-lt); }
.faq-item[open] > summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 22px 18px; color: #9ca3af; font-size: 14px; line-height: 1.75; }

/* ─── RESPONSIVE ──────────────────────────── */
@media (max-width: 1024px) {
  .sobre-grid { grid-template-columns: 1fr; }
  .sobre-img { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery-item:nth-child(1) { grid-column: span 1; grid-row: span 1; }
  .sp-grid { grid-template-columns: 1fr; }
  .sp-img { display: none; }
  .sp-others-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .top-bar .inner { justify-content: center; }
  .top-bar .contacts { justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
  .contato-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .checklist { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  section { padding: 60px 20px; }
  .sp-hero { height: 380px; }
  .sp-benefits { grid-template-columns: 1fr; }
  .vp { height: 320px; }
}
@media (max-width: 480px) {
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-item:nth-child(1) { grid-column: span 1; grid-row: span 1; }
  .sp-others-grid { grid-template-columns: 1fr 1fr; }
}

/* ─── Splash Screen ─── */
#splash {
  position: fixed;
  inset: 0;
  background: #060910;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 99999;
  transition: opacity .75s ease;
  overflow: hidden;
}

/* Radial glow that pulses */
.splash-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(28,63,168,.45) 0%, rgba(37,99,235,.15) 40%, transparent 70%);
  animation: splashGlow 2.4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes splashGlow {
  0%, 100% { transform: scale(.9);  opacity: .55; }
  50%       { transform: scale(1.2); opacity: 1; }
}

/* Expanding rings */
.splash-rings {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
}
.splash-rings span {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(28,63,168,.5);
  transform: translate(-50%, -50%);
  animation: splashRing 2s ease-out infinite;
}
.splash-rings span:nth-child(2) { animation-delay: .9s; }
@keyframes splashRing {
  0%   { width: 80px;  height: 80px;  opacity: .8; }
  100% { width: 520px; height: 520px; opacity: 0; }
}

/* Logo + tagline wrapper */
.splash-body {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
#splash img {
  width: 210px;
  max-width: 56vw;
  filter: drop-shadow(0 0 32px rgba(28,63,168,.6));
  animation: splashLogoIn 1.1s cubic-bezier(.22,.61,.36,1) forwards;
}
@keyframes splashLogoIn {
  0%   { opacity: 0; transform: scale(.68) translateY(12px); filter: drop-shadow(0 0 0px rgba(28,63,168,0)); }
  65%  { opacity: 1; transform: scale(1.05) translateY(-3px); }
  100% { opacity: 1; transform: scale(1) translateY(0); filter: drop-shadow(0 0 32px rgba(28,63,168,.6)); }
}

/* Tagline */
.splash-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: rgba(255,255,255,.0);
  animation: splashTagline .7s ease .95s forwards;
  white-space: nowrap;
}
@keyframes splashTagline {
  0%   { opacity: 0; color: rgba(255,255,255,0);  letter-spacing: 10px; }
  100% { opacity: 1; color: rgba(255,255,255,.65); letter-spacing: 6px; }
}

/* Progress bar at bottom */
.splash-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,.07);
}
.splash-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #1c3fa8, #60a5fa, #1c3fa8);
  background-size: 200% 100%;
  box-shadow: 0 0 14px rgba(96,165,250,.7);
  animation: splashBarFill 1.9s cubic-bezier(.4,0,.2,1) forwards,
             splashBarShimmer 1s linear .4s infinite;
}
@keyframes splashBarFill {
  0%   { width: 0%; }
  100% { width: 100%; }
}
@keyframes splashBarShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
