:root {
  --navy: #0e2a45;
  --navy-2: #123a5e;
  --orange: #ff7a2e;
  --orange-2: #ffab4d;
  --orange-dark: #e8611a;
  --bg: #ffffff;
  --bg-alt: #f4f7fa;
  --text: #1c2b3a;
  --text-dim: #5b6b7b;
  --border: #e2e8ee;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(14, 42, 69, 0.08);
  --shadow-lg: 0 20px 50px rgba(14, 42, 69, 0.16);
  --font-heading: "Sora", "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

h1, h2, h3, h4 { font-family: var(--font-heading); letter-spacing: -0.01em; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }

/* TILT (inclinação 3D ao mover o mouse) */
.tilt { transform-style: preserve-3d; transition: transform 0.15s ease-out; will-change: transform; }

/* SCROLL PROGRESS BAR */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--orange-2), var(--orange-dark));
  z-index: 1000; transition: width 0.1s linear;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--font-heading);
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary {
  background: linear-gradient(135deg, var(--orange-2), var(--orange) 55%, var(--orange-dark));
  color: #fff; box-shadow: 0 10px 24px rgba(255, 122, 46, 0.35);
}
.btn-primary:hover { box-shadow: 0 14px 30px rgba(255, 122, 46, 0.45); }
.btn-whatsapp { background: #25d366; color: #fff; box-shadow: 0 10px 24px rgba(37, 211, 102, 0.3); }
.btn-whatsapp:hover { background: #1ebc59; box-shadow: 0 14px 30px rgba(37, 211, 102, 0.4); }
.btn-whatsapp-outline {
  background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.6);
}
.btn-whatsapp-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn.full { width: 100%; text-align: center; }

/* HEADER */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(14, 42, 69, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}
.header.scrolled { background: rgba(10, 30, 50, 0.97); box-shadow: 0 8px 24px rgba(0,0,0,0.22); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }

.logo { display: inline-flex; align-items: center; font-size: 1.25rem; font-weight: 800; color: #fff; }
.logo span { color: var(--orange); }
.logo-img { height: 52px; width: auto; display: block; }
.footer .logo-img { height: 48px; }

.nav { display: flex; gap: 28px; }
.nav a {
  position: relative; color: #cfe0ef; font-size: 0.92rem; font-weight: 500; padding: 4px 0;
  transition: color 0.2s ease;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -4px; width: 0; height: 2px;
  background: var(--orange); transition: width 0.25s ease;
}
.nav a:hover, .nav a.active { color: #fff; }
.nav a:hover::after, .nav a.active::after { width: 100%; }

.header-cta { flex-shrink: 0; }

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

@media (max-width: 860px) {
  .nav {
    position: absolute; top: 74px; left: 0; right: 0;
    background: var(--navy-2); flex-direction: column; gap: 0;
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
  }
  .nav.open { max-height: 320px; }
  .nav a { padding: 14px 20px; border-top: 1px solid rgba(255,255,255,0.08); }
  .header-cta { display: none; }
  .hamburger { display: flex; }
}

/* HERO */
.hero {
  background-image:
    linear-gradient(100deg, rgba(9, 26, 43, 0.97) 0%, rgba(9, 26, 43, 0.94) 45%, rgba(9, 26, 43, 0.6) 68%, rgba(9, 26, 43, 0.32) 100%),
    url("assets/hero-bg.webp");
  background-repeat: no-repeat;
  background-position: center, center 18%;
  background-size: auto, cover;
  color: #fff;
  padding: 110px 0;
}
.hero { position: relative; overflow: hidden; }
.hero-inner { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; position: relative; z-index: 1; }
.hero-text { max-width: 620px; }

.hero-spotlight {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(circle 380px at var(--mx, 50%) var(--my, 30%), rgba(255, 178, 92, 0.16), transparent 70%);
  opacity: 0; transition: opacity 0.4s ease;
}
.hero:hover .hero-spotlight { opacity: 1; }
@media (max-width: 700px) { .hero-spotlight { display: none; } }

.eyebrow {
  display: inline-block; background: rgba(255, 122, 46, 0.15); color: var(--orange);
  padding: 6px 14px; border-radius: 999px; font-size: 0.8rem; font-weight: 700;
  margin-bottom: 16px; letter-spacing: 0.02em;
}
.hero h1 { font-size: 2.6rem; line-height: 1.2; margin: 0 0 16px; text-shadow: 0 2px 16px rgba(0,0,0,0.35); }
.hero p { color: #cfe0ef; font-size: 1.02rem; max-width: 520px; margin-bottom: 26px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }
.hero-trust { display: flex; gap: 20px; flex-wrap: wrap; font-size: 0.85rem; color: #9fc0dc; }

.hero-in {
  opacity: 0; transform: translateY(18px);
  animation: heroIn 0.7s ease forwards;
  animation-delay: var(--d, 0s);
}
@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}

.scroll-cue {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,0.5); border-radius: 999px;
  display: flex; justify-content: center; padding-top: 8px; z-index: 1;
}
.scroll-cue span {
  width: 4px; height: 8px; border-radius: 2px; background: #fff;
  animation: scrollCue 1.6s ease infinite;
}
@keyframes scrollCue {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(14px); }
}
@media (max-width: 700px) { .scroll-cue { display: none; } }

/* SECTION TITLES */
.section-title {
  text-align: center; font-size: 1.9rem; margin: 0 0 12px; color: var(--navy); position: relative;
}
.section-title.left { text-align: left; }
.section-title::after {
  content: ""; display: block; width: 56px; height: 4px; margin: 14px auto 0;
  background: linear-gradient(135deg, var(--orange-2), var(--orange-dark)); border-radius: 999px;
}
.section-title.left::after { margin: 14px 0 0; }
.section-subtitle { text-align: center; color: var(--text-dim); margin: 0 0 40px; }

/* SERVICES — carrossel */
.services { padding: 90px 0 86px; background: var(--bg); position: relative; }
.services .container { margin-bottom: 36px; }

.services-carousel { display: flex; align-items: center; gap: 14px; }

.carousel-arrow {
  flex: 0 0 auto; width: 46px; height: 46px; border-radius: 50%;
  background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow);
  color: var(--navy); font-size: 1.4rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.carousel-arrow:hover { background: var(--orange); color: #fff; transform: scale(1.06); }
.carousel-arrow:disabled { opacity: 0.35; cursor: default; }
.carousel-arrow:disabled:hover { background: #fff; color: var(--navy); transform: none; }

.carousel-track-wrap {
  flex: 1 1 auto; overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; -ms-overflow-style: none;
}
.carousel-track-wrap::-webkit-scrollbar { display: none; }

.carousel-track { display: flex; align-items: center; gap: 22px; padding: 6px 6px 18px; perspective: 900px; }

.banner-card {
  flex: 0 0 auto; height: 320px; width: auto;
  border-radius: var(--radius); overflow: hidden; scroll-snap-align: start;
  box-shadow: var(--shadow); transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.banner-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.banner-card img { display: block; height: 100%; width: auto; }

@media (max-width: 700px) {
  .carousel-arrow { display: none; }
  .banner-card { height: 260px; }
}

/* PROCESS */
.process { padding: 80px 0; background: var(--bg-alt); }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; perspective: 900px; }
@media (max-width: 780px) { .process-grid { grid-template-columns: 1fr; } }

.process-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 24px; position: relative; transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.process-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.process-num {
  font-family: var(--font-heading); font-weight: 800; font-size: 2.4rem;
  color: transparent; -webkit-text-stroke: 1.5px var(--orange); display: block; margin-bottom: 10px;
  opacity: 0.85;
}
.process-card h3 { margin: 0 0 10px; color: var(--navy); }
.process-card p { margin: 0; color: var(--text-dim); font-size: 0.9rem; }

/* CTA BAND */
.cta-band {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-2) 100%);
  padding: 56px 0; color: #fff;
}
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-band h2 { margin: 0 0 6px; font-size: 1.6rem; }
.cta-band p { margin: 0; color: #b9cede; }
.cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* TAGLINE */
.tagline {
  background: linear-gradient(120deg, var(--orange-2), var(--orange) 55%, var(--orange-dark));
  color: #fff; padding: 44px 0; text-align: center;
}
.tagline p { font-size: 1.2rem; font-weight: 600; max-width: 780px; margin: 0 auto; font-style: italic; }

/* ABOUT */
.about { padding: 90px 0; background: var(--bg-alt); }
.about-inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .about-inner { grid-template-columns: 1fr; gap: 40px; } }

.about-image {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg);
}
.about-image img { display: block; width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/4.3; }
@media (max-width: 900px) { .about-image img { aspect-ratio: 16/10; } }

.about-accent {
  display: block; width: 56px; height: 4px; margin-bottom: 18px;
  background: linear-gradient(135deg, var(--orange-2), var(--orange-dark)); border-radius: 999px;
}
.about-text h2 {
  font-size: 2rem; color: var(--navy); margin: 0 0 20px; line-height: 1.25;
}
.about-text p { color: var(--text-dim); margin-bottom: 18px; }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 30px 0 34px; }
@media (max-width: 560px) { .stats { grid-template-columns: 1fr 1fr; } }

.stat-card {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 22px 16px; text-align: center; transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.stat-icon {
  width: 46px; height: 46px; margin: 0 auto 12px; border-radius: 50%;
  background: rgba(255, 122, 46, 0.12); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
}
.stat-icon svg { width: 24px; height: 24px; }
.stat-number { font-size: 1.9rem; font-weight: 800; color: var(--orange); }
.stat-suffix { font-size: 1.3rem; font-weight: 800; color: var(--orange); }
.stat-label { display: block; font-size: 0.82rem; color: var(--text-dim); margin-top: 4px; }

.about-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-outline-navy {
  display: inline-block; padding: 14px 28px; border-radius: 999px; font-weight: 600;
  font-size: 0.95rem; font-family: var(--font-heading); border: 2px solid var(--navy);
  color: var(--navy); background: transparent; transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.btn-outline-navy:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }

/* CONTACT */
.contact {
  background: linear-gradient(100deg, var(--orange-2) 0%, var(--orange) 55%, var(--orange-dark) 100%);
  position: relative; overflow: hidden;
}

.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; align-items: stretch; min-height: 640px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; min-height: 0; } }

.contact-form-col { padding: 80px 5vw 80px 6vw; color: #fff; }
@media (max-width: 900px) { .contact-form-col { padding: 60px 24px; } }

.contact-title {
  font-family: var(--font-heading); font-size: 2rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.02em; margin: 0 0 10px;
}
.contact-subtitle { color: rgba(255,255,255,0.9); margin: 0 0 28px; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

.contact-form .field { margin-bottom: 20px; }
.contact-form label {
  display: block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; margin-bottom: 8px; color: #fff;
}
.contact-form .req { color: var(--navy); }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: 12px 14px; border-radius: 10px; border: none;
  font-size: 0.92rem; font-family: inherit; background: #fff; color: var(--text);
}
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; box-shadow: 0 0 0 3px rgba(14, 42, 69, 0.35);
}

.consent {
  display: flex; align-items: flex-start; gap: 10px; font-size: 0.86rem;
  color: #fff; margin-bottom: 26px; cursor: pointer; line-height: 1.4;
}
.consent input { margin-top: 3px; width: 16px; height: 16px; flex-shrink: 0; accent-color: var(--navy); }

.btn-enviar {
  background: var(--navy); color: #fff; border: none; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase; padding: 14px 40px;
  border-radius: 999px; cursor: pointer; font-size: 0.92rem;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn-enviar:hover { background: var(--navy-2); transform: translateY(-2px); }

.contact-photo-col { position: relative; min-height: 320px; }
.contact-photo-col img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: top center; display: block;
}
@media (max-width: 900px) { .contact-photo-col { min-height: 380px; } }

/* LOCATION / MAP */
.location { padding: 80px 0 0; background: var(--bg); text-align: center; }
.location .section-subtitle { margin-bottom: 36px; }

.location-map-wrap { position: relative; width: 100%; }
.location-map {
  display: block; width: 100%; height: 460px; border: 0;
}
.map-open-btn {
  position: absolute; top: 20px; left: 20px; z-index: 2;
  background: #fff; color: var(--navy); font-weight: 700; font-size: 0.85rem;
  padding: 10px 16px; border-radius: 8px; box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.map-open-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

@media (max-width: 700px) {
  .location-map { height: 320px; }
}

/* PARTNERS */
.partners { padding: 76px 0 86px; background: var(--bg-alt); }

.partners-marquee {
  width: 100%; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.partners-track {
  display: flex; align-items: center; gap: 36px; width: max-content;
  animation: partnersSlide 20s ease-in-out infinite alternate;
}
.partners-marquee:hover .partners-track { animation-play-state: paused; }

@keyframes partnersSlide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.partner-logo {
  position: relative; flex: 0 0 auto; width: 184px; height: 112px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; padding: 22px;
  box-shadow: var(--shadow); overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.partner-logo::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange-2), var(--orange-dark));
  transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease;
}
.partner-logo:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent;
}
.partner-logo:hover::before { transform: scaleX(1); }
.partner-logo img {
  max-width: 100%; max-height: 100%; object-fit: contain;
  filter: grayscale(100%); opacity: 0.65;
  transition: filter 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
}
.partner-logo:hover img { filter: grayscale(0%); opacity: 1; transform: scale(1.06); }

@media (max-width: 700px) {
  .partner-logo { width: 140px; height: 88px; padding: 16px; }
}

/* FOOTER */
.footer { background: var(--navy); color: #cfe0ef; padding: 60px 0 0; }
.footer-inner {
  display: grid; grid-template-columns: 1.1fr 0.8fr 1.1fr 1fr; gap: 36px;
  align-items: start; padding-bottom: 44px;
}
@media (max-width: 980px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .footer-inner { grid-template-columns: 1fr; } }

.footer-col h4 { color: #fff; margin: 0 0 14px; }
.footer-col a, .footer-col p { display: block; color: #b9cede; font-size: 0.9rem; margin-bottom: 10px; }
.footer-col p { margin-bottom: 8px; }
.footer-subhead { margin-top: 18px; }

.footer-brand p { max-width: 260px; }

.socials { display: flex; gap: 14px; margin-top: 10px; }
.socials a {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s ease;
}
.socials a img { width: 100%; height: 100%; object-fit: contain; border-radius: 10px; }
.socials a:hover { transform: translateY(-3px); }

.footer-cta {
  background: linear-gradient(135deg, var(--orange-2), var(--orange) 55%, var(--orange-dark));
  border-radius: var(--radius); padding: 26px 22px; color: #fff; text-align: left;
}
.footer-cta-icon { font-size: 1.6rem; display: block; margin-bottom: 8px; }
.footer-cta h4 { color: #fff; margin: 0 0 10px; font-size: 1.1rem; line-height: 1.3; }
.footer-cta p { color: rgba(255,255,255,0.9); margin-bottom: 10px; font-size: 0.85rem; }
.footer-cta-email {
  display: block; background: #fff; color: var(--navy); font-weight: 700; font-size: 0.82rem;
  padding: 10px 12px; border-radius: 8px; word-break: break-word;
  transition: transform 0.2s ease;
}
.footer-cta-email:hover { transform: translateY(-2px); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding: 18px 0; text-align: center;
  font-size: 0.82rem; color: #8fa9bf;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; width: 58px; height: 58px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5); z-index: 200;
  animation: pulse 2.4s infinite; transition: transform 0.2s ease;
}
.whatsapp-float img { width: 100%; height: 100%; object-fit: contain; border-radius: 14px; }
.whatsapp-float:hover { transform: scale(1.08); }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* INSTAGRAM FLOAT */
.instagram-float {
  position: fixed; bottom: 94px; right: 27px; width: 52px; height: 52px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(214, 36, 159, 0.45); z-index: 200;
  transition: transform 0.2s ease;
}
.instagram-float img { width: 100%; height: 100%; object-fit: contain; }
.instagram-float:hover { transform: scale(1.08); }

/* BACK TO TOP */
.back-to-top {
  position: fixed; bottom: 160px; right: 28px; width: 46px; height: 46px;
  background: #fff; color: var(--navy); border: 1px solid var(--border); border-radius: 50%;
  font-size: 1.1rem; cursor: pointer; box-shadow: var(--shadow); z-index: 200;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--navy); color: #fff; }
@media (max-width: 480px) {
  .whatsapp-float { width: 50px; height: 50px; bottom: 18px; right: 18px; font-size: 1.4rem; }
  .instagram-float { width: 44px; height: 44px; bottom: 76px; right: 21px; font-size: 1.2rem; }
  .back-to-top { width: 40px; height: 40px; bottom: 130px; right: 23px; }
}

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
