:root {
  --azul: #0a48a0;
  --azul-claro: #1977d3;
  --azul-escuro: #0a2e63;
  --verde: #25d366;
  --fundo: #f6f9ff;
  --fundo-2: #eef4ff;
  --branco: #ffffff;
  --texto: #142033;
  --texto-suave: #667085;
  --borda: rgba(15, 23, 42, 0.08);
  --sombra: 0 20px 45px rgba(15, 23, 42, 0.08);
  --sombra-hover: 0 28px 60px rgba(15, 23, 42, 0.14);
  --raio: 18px;
  --gradiente: linear-gradient(135deg, #0a48a0 0%, #1977d3 100%);
  --gradiente-premium: linear-gradient(135deg, #0a48a0 0%, #1977d3 55%, #5da8ff 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top left, rgba(25, 119, 211, 0.08), transparent 30%),
    radial-gradient(circle at bottom right, rgba(10, 72, 160, 0.08), transparent 35%),
    var(--fundo);
  color: var(--texto);
  line-height: 1.6;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

/* TOPO */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
}

.topbar {
  background: var(--gradiente);
  color: #fff;
  font-size: 0.92rem;
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 8px 0;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-item a {
  color: #fff;
}

.header-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--sombra);
}

.brand-text strong {
  display: block;
  color: var(--azul);
  font-size: 1.08rem;
  line-height: 1.1;
}

.brand-text span {
  color: var(--texto-suave);
  font-size: 0.92rem;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 12px;
  background: var(--gradiente);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: var(--sombra);
}

.nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
}

.nav-menu a {
  color: var(--texto);
  font-weight: 700;
  position: relative;
  padding: 8px 0;
  transition: 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--azul);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: var(--azul);
  transition: 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--gradiente);
  color: #fff;
  font-weight: 700;
  box-shadow: var(--sombra);
  transition: 0.3s;
}

.header-cta:hover {
  transform: translateY(-2px);
}

/* HERO */
.hero-home {
  position: relative;
  padding: 96px 0 76px;
  overflow: hidden;
}

.hero-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(93, 168, 255, 0.16), transparent 18%),
    radial-gradient(circle at 80% 18%, rgba(25, 119, 211, 0.14), transparent 18%),
    linear-gradient(180deg, rgba(255,255,255,0.45), rgba(255,255,255,0));
  pointer-events: none;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(25,119,211,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25,119,211,0.06) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.85), transparent 95%);
  pointer-events: none;
}

.hero-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
  pointer-events: none;
  animation: floatGlow 8s ease-in-out infinite;
}

.hero-blur-1 {
  width: 280px;
  height: 280px;
  background: rgba(25, 119, 211, 0.18);
  top: -60px;
  left: -40px;
}

.hero-blur-2 {
  width: 340px;
  height: 340px;
  background: rgba(10, 72, 160, 0.14);
  right: -80px;
  bottom: -100px;
  animation-delay: 1.2s;
}

.hero-blur-3 {
  width: 220px;
  height: 220px;
  background: rgba(93, 168, 255, 0.18);
  right: 24%;
  top: 20%;
  animation-delay: 2.2s;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 34px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge,
.section-kicker {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(25, 119, 211, 0.10);
  color: var(--azul);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.section-kicker-light {
  background: rgba(255,255,255,0.16);
  color: #fff;
}

.text-gradient {
  background: var(--gradiente-premium);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text h1 {
  font-size: clamp(2rem, 5vw, 3.85rem);
  line-height: 1.04;
  margin-bottom: 18px;
  color: var(--texto);
  max-width: 700px;
}

.hero-text p {
  color: var(--texto-suave);
  font-size: 1.08rem;
  margin-bottom: 28px;
  max-width: 640px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.hero-points {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--texto-suave);
  font-size: 0.96rem;
  margin-bottom: 24px;
}

.hero-mini-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.mini-info-card {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.78);
  box-shadow: var(--sombra);
  border-radius: 18px;
  padding: 16px;
  transition: 0.35s ease;
}

.mini-info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sombra-hover);
}

.mini-info-card strong {
  display: block;
  color: var(--azul);
  margin-bottom: 4px;
}

.mini-info-card span {
  color: var(--texto-suave);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-floating-card {
  position: relative;
  width: 100%;
  max-width: 470px;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: var(--sombra-hover);
  border-radius: 30px;
  padding: 34px;
  overflow: hidden;
  transition: transform 0.18s ease;
  transform-style: preserve-3d;
}

.hero-floating-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(25,119,211,0.34), rgba(255,255,255,0.65));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.hero-floating-card::after {
  content: "";
  position: absolute;
  top: -30%;
  left: -60%;
  width: 55%;
  height: 170%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.35), transparent);
  transform: rotate(18deg);
  animation: shineSweep 5.5s linear infinite;
  pointer-events: none;
}

.mini-tag {
  display: inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(10, 72, 160, 0.08);
  color: var(--azul);
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.hero-floating-card h2 {
  font-size: 1.7rem;
  line-height: 1.18;
  margin-bottom: 12px;
}

.hero-floating-card p {
  color: var(--texto-suave);
  margin-bottom: 20px;
}

.hero-card-footer {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.hero-chip {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(10,72,160,0.08);
  color: var(--azul);
  font-weight: 700;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.floating-badge {
  position: absolute;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.78);
  box-shadow: var(--sombra);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 800;
  color: var(--azul);
  animation: floatingBadge 6s ease-in-out infinite;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.badge-1 {
  top: 40px;
  right: 10px;
}

.badge-2 {
  left: 0;
  bottom: 90px;
  animation-delay: 1.5s;
}

.badge-3 {
  right: 40px;
  bottom: 20px;
  animation-delay: 2.8s;
}

.hero-page {
  background: linear-gradient(135deg, rgba(10,72,160,0.96), rgba(25,119,211,0.94));
  color: #fff;
  text-align: center;
  padding: 78px 0;
  position: relative;
  overflow: hidden;
}

.hero-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.10), transparent 30%),
    radial-gradient(circle at bottom right, rgba(255,255,255,0.08), transparent 30%);
  pointer-events: none;
}

.hero-page .container {
  position: relative;
  z-index: 1;
}

.hero-page h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 10px;
}

.hero-page p {
  color: rgba(255,255,255,0.92);
  max-width: 760px;
  margin: 0 auto;
}

/* BOTÕES */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
  font-size: 1rem;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gradiente-premium);
  color: #fff;
  box-shadow: 0 16px 34px rgba(25,119,211,0.22);
}

.btn-primary:hover {
  box-shadow: 0 22px 42px rgba(25,119,211,0.28);
}

.btn-outline {
  background: rgba(255,255,255,0.82);
  color: var(--azul);
  border: 1px solid rgba(25,119,211,0.18);
  box-shadow: var(--sombra);
}

.btn-outline:hover {
  background: #fff;
}

.btn-light {
  background: #fff;
  color: var(--azul);
  box-shadow: var(--sombra);
}

.btn-email {
  background: linear-gradient(135deg, #0f766e, #0b5e58);
  color: #fff;
  box-shadow: var(--sombra);
}

.btn-full {
  width: 100%;
}

/* SEÇÕES */
.section {
  padding: 78px 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(238, 244, 255, 0.85), rgba(246, 249, 255, 0.6));
}

.section-title {
  text-align: center;
  margin-bottom: 36px;
}

.section-title h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--texto);
  margin-bottom: 10px;
}

.section-title p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--texto-suave);
}

/* CONTADORES */
.counter-section {
  padding: 24px 0 10px;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.counter-card {
  background: rgba(255,255,255,0.84);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.75);
  box-shadow: var(--sombra);
  border-radius: 22px;
  padding: 24px;
  text-align: center;
  transition: 0.35s ease;
}

.counter-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sombra-hover);
}

.counter-number {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 10px;
  color: var(--azul);
}

.counter-text {
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 10px;
  color: var(--azul);
}

.counter-card h3 {
  margin-bottom: 8px;
  color: var(--texto);
  font-size: 1.05rem;
}

.counter-card p {
  color: var(--texto-suave);
  font-size: 0.95rem;
}

/* GRIDS */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* CARDS */
.card,
.feature-item,
.gallery-premium-card,
.testimonial-slide,
.counter-card,
.map-card {
  position: relative;
  overflow: hidden;
}

.premium-card::before,
.card::before,
.feature-item::before,
.gallery-premium-card::before,
.testimonial-slide::before,
.counter-card::before,
.map-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(25,119,211,0.18), rgba(255,255,255,0.76));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.premium-card::after,
.card::after,
.feature-item::after,
.gallery-premium-card::after,
.testimonial-slide::after,
.counter-card::after {
  content: "";
  width: 180px;
  height: 180px;
  position: absolute;
  top: var(--mouse-y, 50%);
  left: var(--mouse-x, 50%);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(93,168,255,0.16), transparent 65%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.premium-card:hover::after,
.card:hover::after,
.feature-item:hover::after,
.gallery-premium-card:hover::after,
.testimonial-slide:hover::after,
.counter-card:hover::after {
  opacity: 1;
}

.card {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.72);
  box-shadow: var(--sombra);
  border-radius: 22px;
  padding: 26px;
  transition: 0.35s ease;
}

.modern-card:hover,
.card:hover,
.feature-item:hover,
.gallery-premium-card:hover,
.testimonial-slide:hover,
.counter-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sombra-hover);
}

.card-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 14px;
  background: linear-gradient(135deg, rgba(25,119,211,0.12), rgba(10,72,160,0.18));
  color: var(--azul);
  transition: transform 0.35s ease;
}

.card:hover .card-icon,
.feature-item:hover .feature-icon {
  transform: translateY(-3px) scale(1.05);
}

.card h3 {
  color: var(--texto);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.card p {
  color: var(--texto-suave);
}

/* FEATURES */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--sombra);
  transition: 0.35s ease;
}

.feature-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(25,119,211,0.12), rgba(10,72,160,0.2));
  color: var(--azul);
  font-size: 1.35rem;
  transition: transform 0.35s ease;
}

.feature-item h3 {
  margin-bottom: 6px;
  color: var(--texto);
}

.feature-item p {
  color: var(--texto-suave);
}

/* DEPOIMENTOS */
.testimonial-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr 64px;
  gap: 18px;
  align-items: center;
}

.testimonial-viewport {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.45s ease;
}

.testimonial-slide {
  min-width: 100%;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: 26px;
  box-shadow: var(--sombra);
  padding: 34px;
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-slide p {
  font-size: 1.08rem;
  color: var(--texto);
  max-width: 760px;
  margin-bottom: 22px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gradiente-premium);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: var(--sombra);
}

.testimonial-user strong {
  display: block;
  color: var(--texto);
}

.testimonial-user span {
  color: var(--texto-suave);
  font-size: 0.92rem;
}

.slider-btn {
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 18px;
  background: rgba(255,255,255,0.88);
  color: var(--azul);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--sombra);
  transition: 0.3s ease;
}

.slider-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--sombra-hover);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: none;
  background: rgba(25,119,211,0.20);
  cursor: pointer;
  transition: 0.3s ease;
}

.slider-dot.active {
  width: 34px;
  background: var(--gradiente-premium);
}

/* GALERIA */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.filter-btn {
  border: 1px solid rgba(25,119,211,0.14);
  background: rgba(255,255,255,0.82);
  color: var(--azul);
  padding: 11px 16px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: var(--sombra);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gradiente-premium);
  color: #fff;
}

.gallery-premium-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.gallery-premium-card {
  min-height: 250px;
  grid-column: span 4;
  background-size: cover;
  background-position: center;
  border-radius: 26px;
  box-shadow: var(--sombra);
  border: 1px solid rgba(255,255,255,0.72);
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.35s ease;
  cursor: pointer;
}

.gallery-premium-card.tall {
  min-height: 360px;
}

.gallery-premium-card.wide {
  grid-column: span 8;
}

.gallery-premium-card.hidden {
  display: none;
}

.gallery-badge {
  align-self: flex-start;
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(10px);
  color: var(--azul);
  font-size: 0.82rem;
  font-weight: 800;
}

.gallery-content {
  margin-top: auto;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.65);
  padding: 18px;
  border-radius: 18px;
}

.gallery-content h3 {
  color: var(--texto);
  margin-bottom: 6px;
}

.gallery-content p {
  color: var(--texto-suave);
}

.gallery-help {
  margin-top: 24px;
  text-align: center;
  color: var(--texto-suave);
}

.gallery-help code {
  display: inline-block;
  margin-top: 10px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: var(--sombra);
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--azul-escuro);
  max-width: 100%;
  overflow-x: auto;
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
}

.lightbox.active {
  display: block;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 32, 0.82);
  backdrop-filter: blur(10px);
}

.lightbox-content {
  position: relative;
  width: min(920px, 92vw);
  margin: 5vh auto;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 28px;
  box-shadow: var(--sombra-hover);
  overflow: hidden;
  animation: lightboxIn 0.28s ease;
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 14px;
  background: rgba(255,255,255,0.88);
  color: var(--azul);
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: var(--sombra);
  z-index: 2;
}

.lightbox-media {
  min-height: 420px;
  background-size: cover;
  background-position: center;
}

.lightbox-info {
  padding: 24px;
}

.lightbox-tag {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(25,119,211,0.10);
  color: var(--azul);
  font-weight: 800;
  font-size: 0.82rem;
  margin-bottom: 12px;
}

.lightbox-info h3 {
  margin-bottom: 8px;
  color: var(--texto);
  font-size: 1.4rem;
}

.lightbox-info p {
  color: var(--texto-suave);
}

/* MAPA */
.map-card {
  height: 420px;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.72);
  box-shadow: var(--sombra-hover);
}

/* FORM */
.form-card {
  max-width: 820px;
  margin: 0 auto;
  background: rgba(255,255,255,0.84);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.74);
  border-radius: 24px;
  box-shadow: var(--sombra);
  padding: 32px;
  text-align: left;
}

.form-card label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--texto);
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 15px 16px;
  margin-bottom: 18px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255,255,255,0.85);
  border-radius: 14px;
  font-size: 1rem;
  color: var(--texto);
  outline: none;
  transition: 0.3s ease;
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  border-color: rgba(25,119,211,0.4);
  box-shadow: 0 0 0 5px rgba(25,119,211,0.10);
}

.form-card textarea {
  min-height: 140px;
  resize: vertical;
}

.form-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 6px;
}

.status-msg {
  margin-top: 16px;
  font-weight: 700;
  font-size: 0.95rem;
}

.status-msg.success {
  color: #15803d;
}

.status-msg.error {
  color: #dc2626;
}

/* CTA */
.cta-banner {
  background: linear-gradient(135deg, rgba(10,72,160,0.98), rgba(25,119,211,0.95));
  color: #fff;
  border-radius: 28px;
  padding: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  box-shadow: var(--sombra-hover);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.10), transparent 25%),
    radial-gradient(circle at bottom left, rgba(255,255,255,0.08), transparent 28%);
  pointer-events: none;
}

.cta-banner > * {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  margin-bottom: 8px;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}

.cta-banner p {
  color: rgba(255,255,255,0.90);
}

.contact-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* FOOTER */
.site-footer {
  background: #0b1220;
  color: #e2e8f0;
  margin-top: 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
  padding: 34px 0;
}

.site-footer h3,
.site-footer h4 {
  margin-bottom: 10px;
}

.site-footer p,
.site-footer a {
  color: #cbd5e1;
}

.footer-bottom {
  text-align: center;
  padding: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.95rem;
}

/* WHATSAPP */
.zap-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 34px rgba(0, 255, 34, 0.34);
  z-index: 1001;
  transition: 0.3s ease;
}

.zap-float:hover {
  transform: scale(1.08);
}

.zap-float img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ANIMAÇÕES */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatGlow {
  0%, 100% {
    transform: translateY(0px) translateX(0px) scale(1);
  }
  50% {
    transform: translateY(14px) translateX(6px) scale(1.04);
  }
}

@keyframes floatingBadge {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes shineSweep {
  0% {
    transform: translateX(-10%) rotate(18deg);
  }
  100% {
    transform: translateX(260%) rotate(18deg);
  }
}

@keyframes lightboxIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* RESPONSIVO */
@media (max-width: 1080px) {
  .header-wrap {
    grid-template-columns: auto 1fr auto;
  }

  .header-cta {
    display: none;
  }

  .hero-mini-cards {
    grid-template-columns: 1fr;
  }

  .gallery-premium-card {
    grid-column: span 6;
  }

  .gallery-premium-card.wide {
    grid-column: span 12;
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .grid-3,
  .grid-2,
  .feature-grid,
  .footer-grid,
  .form-actions,
  .counter-grid {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-visual {
    min-height: auto;
  }

  .testimonial-carousel {
    grid-template-columns: 1fr;
  }

  .slider-btn {
    display: none;
  }

  .gallery-premium-card,
  .gallery-premium-card.wide {
    grid-column: span 12;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .header-wrap {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(280px, 92vw);
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.7);
    border-radius: 18px;
    box-shadow: var(--sombra-hover);
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu a {
    padding: 12px 12px;
    border-radius: 12px;
  }

  .nav-menu a:hover,
  .nav-menu a.active {
    background: rgba(25,119,211,0.08);
  }

  .nav-menu a::after {
    display: none;
  }

  .topbar-content {
    justify-content: center;
    text-align: center;
  }

  .hero-home {
    padding: 72px 0 52px;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .contact-actions .btn,
  .cta-banner .btn,
  .form-actions .btn {
    width: 100%;
  }

  .card,
  .feature-item,
  .hero-floating-card,
  .testimonial-slide,
  .gallery-premium-card,
  .counter-card,
  .map-card,
  .lightbox-content {
    border-radius: 20px;
  }

  .floating-badge {
    display: none;
  }

  .lightbox-media {
    min-height: 260px;
  }

  .map-card {
    height: 320px;
  }
}

@media (max-width: 480px) {
  .brand-logo {
    width: 52px;
    height: 52px;
  }

  .brand-text strong {
    font-size: 0.98rem;
  }

  .brand-text span {
    font-size: 0.84rem;
  }

  .topbar {
    font-size: 0.84rem;
  }

  .hero-points {
    flex-direction: column;
    gap: 6px;
  }

  .section,
  .hero-page {
    padding: 62px 0;
  }

  .form-card,
  .cta-banner,
  .hero-floating-card,
  .card,
  .mini-info-card,
  .testimonial-slide,
  .gallery-premium-card,
  .counter-card,
  .lightbox-info {
    padding: 22px;
  }

  .testimonial-slide p {
    font-size: 1rem;
  }

  .zap-float {
    width: 60px;
    height: 60px;
  }

  .zap-float img {
    width: 30px;
    height: 30px;
  }
}