:root {
  --primary: #0f67db;
  --primary-dark: #093f8f;
  --primary-deep: #081e42;
  --secondary: #25a7ff;
  --accent: #eff7ff;
  --accent-2: #dcefff;
  --dark: #081221;
  --dark-2: #0d1b30;
  --text: #1f3148;
  --muted: #5f728a;
  --white: #ffffff;
  --border: rgba(15, 103, 219, 0.14);
  --shadow: 0 22px 70px rgba(7, 38, 86, 0.14);
  --shadow-strong: 0 28px 80px rgba(7, 38, 86, 0.22);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  overflow-x: hidden;
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(15, 103, 219, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(76, 153, 255, 0.14), transparent 24%),
    linear-gradient(180deg, #edf5ff 0%, #f8fbff 18%, #eef6ff 55%, #f7fbff 100%);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255,255,255,0.28), transparent 32%, rgba(255,255,255,0.2) 62%, transparent 76%);
  opacity: 0.45;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(22px);
  z-index: -2;
  opacity: 0.6;
  animation: floatOrb 12s ease-in-out infinite;
}

.orb-1 {
  width: 320px;
  height: 320px;
  left: -90px;
  top: 90px;
  background: radial-gradient(circle, rgba(15, 103, 219, 0.28) 0%, rgba(15, 103, 219, 0) 72%);
}

.orb-2 {
  width: 420px;
  height: 420px;
  right: -110px;
  top: 150px;
  background: radial-gradient(circle, rgba(37, 167, 255, 0.22) 0%, rgba(37, 167, 255, 0) 72%);
  animation-delay: -5s;
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -3;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(15, 103, 219, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 103, 219, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.42), rgba(0,0,0,0.06));
}

@keyframes floatOrb {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(24px) translateX(12px); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(15, 103, 219, 0.18); }
  50% { box-shadow: 0 0 0 12px rgba(15, 103, 219, 0); }
}

@keyframes shineMove {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(180%); }
}

@keyframes floatUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

a {
  text-decoration: none;
  color: inherit;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.glass-card {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 250, 255, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(15, 103, 219, 0.09);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  border-radius: 22px;
  box-shadow: 0 14px 35px rgba(15, 103, 219, 0.14);
  background: rgba(255, 255, 255, 0.9);
  padding: 8px;
}

.brand strong {
  display: block;
  font-size: 1.08rem;
  color: #10243e;
}

.brand span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 4px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 22px;
}

.menu a {
  color: var(--text);
  font-weight: 700;
  position: relative;
}

.menu a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.menu a:not(.btn):hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  font-size: 1.8rem;
  cursor: pointer;
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 15px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary) 0%, #2c85ff 100%);
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 16px 35px rgba(15, 103, 219, 0.24);
  border: none;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,0.34) 48%, transparent 72%);
  transform: translateX(-120%);
}

.btn:hover::before {
  animation: shineMove 0.95s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(15, 103, 219, 0.26);
}

.btn-sm {
  padding: 11px 18px;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.72);
  color: var(--primary-dark);
  border: 1.5px solid rgba(15, 103, 219, 0.18);
  box-shadow: none;
}

.btn-light {
  background: var(--white);
  color: var(--primary-dark);
  box-shadow: none;
}

.btn-full {
  width: 100%;
}

.nav-cta {
  padding-inline: 20px;
}

.hero {
  padding: 86px 0 54px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 34px;
  align-items: center;
}

.eyebrow,
.section-label,
.quick-pill,
.card-tag {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(15, 103, 219, 0.1);
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.eyebrow,
.section-label {
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.35rem, 5vw, 4.7rem);
  line-height: 1.02;
  margin: 0 0 18px;
  color: #071a33;
}

.hero p,
.section-head p,
.about p,
.contact p,
.footer p,
.form-head p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0 24px;
}

.hero-badges,
.form-shortcuts,
.quick-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-badges span,
.shortcut-pill,
.trust-item {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(15, 103, 219, 0.1);
  box-shadow: 0 10px 30px rgba(9, 31, 67, 0.08);
  font-size: 0.92rem;
  color: var(--primary-dark);
  font-weight: 700;
}

.hero-mini-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mini-card {
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.72);
  padding: 18px;
  box-shadow: var(--shadow);
}

.mini-card small {
  display: block;
  color: var(--primary-dark);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.mini-card strong {
  display: block;
  color: #0b1f3c;
  line-height: 1.5;
}

.hero-visual {
  position: relative;
  min-height: 640px;
}

.card-shadow {
  box-shadow: var(--shadow-strong);
}

.hero-main-image {
  position: absolute;
  inset: 0 0 88px 38px;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.hero-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-main-image:hover img {
  transform: scale(1.03);
}

.hero-main-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 26, 51, 0.06) 0%, rgba(7, 26, 51, 0.68) 100%);
}

.hero-overlay {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 2;
  color: white;
}

.hero-overlay span {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.hero-overlay strong {
  display: block;
  font-size: 1.38rem;
  line-height: 1.35;
}

.hero-floating {
  position: absolute;
  z-index: 2;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
}

.logo-box {
  top: 24px;
  left: 0;
  width: 270px;
  padding: 18px;
  border-radius: 26px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-box img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  border-radius: 18px;
  background: white;
  padding: 6px;
}

.logo-box strong,
.stats-box strong,
.accent-box span {
  display: block;
  color: #0b2040;
}

.logo-box span,
.stats-box span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.stats-box {
  right: 0;
  bottom: 0;
  width: 310px;
  padding: 20px;
  border-radius: 28px;
  display: grid;
  gap: 18px;
}

.accent-box {
  right: 36px;
  top: 72px;
  width: 210px;
  padding: 16px 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,255,255,0.94), rgba(223,239,255,0.96));
  animation: pulseGlow 2.8s ease-in-out infinite;
}

.accent-box span {
  line-height: 1.5;
  font-weight: 800;
  color: var(--primary-deep);
}

.trust-bar {
  margin-top: 34px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.section {
  padding: 88px 0;
}

.section-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 30px;
  align-items: start;
}

.section h2 {
  margin-top: 0;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.15;
  color: #081a33;
}

.info-panel {
  display: grid;
  gap: 16px;
}

.info-box {
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.info-box strong {
  display: block;
  font-size: 1.06rem;
  margin-bottom: 8px;
  color: var(--primary-dark);
}

.info-box span {
  color: var(--muted);
  line-height: 1.7;
}

.section-head {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 40px;
}

.section-head.left {
  text-align: left;
  margin-left: 0;
}

.cards,
.feature-grid,
.timeline,
.quick-grid {
  display: grid;
  gap: 22px;
}

.cards {
  grid-template-columns: repeat(3, 1fr);
}

.feature-grid,
.timeline {
  grid-template-columns: repeat(4, 1fr);
}

.quick-grid {
  grid-template-columns: repeat(2, 1fr);
}

.service-card,
.feature-box,
.step,
.contact-form,
.gallery-item,
.quick-card {
  background: rgba(255, 255, 255, 0.82);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.service-card,
.quick-card {
  position: relative;
  overflow: hidden;
}

.service-card::after,
.quick-card::after {
  content: '';
  position: absolute;
  inset: auto -40px -60px auto;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(15, 103, 219, 0.12), rgba(15, 103, 219, 0));
}

.service-card {
  padding: 26px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.service-card:hover,
.quick-card:hover,
.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

.service-card h3,
.feature-box h3,
.step h3,
.contact-form h3,
.quick-card h3 {
  margin: 14px 0 12px;
  color: #0a1730;
}

.service-card p,
.feature-box p,
.step p,
.quick-card p,
.quick-card blockquote {
  margin: 0;
  line-height: 1.8;
  color: var(--muted);
}

.card-tag {
  background: rgba(15, 103, 219, 0.09);
}

.card-tag-light {
  background: rgba(255,255,255,0.16);
  color: white;
}

.service-card.featured {
  background: linear-gradient(135deg, #082040 0%, #1153b8 100%);
  border-color: rgba(255,255,255,0.08);
}

.service-card.featured h3,
.service-card.featured p {
  color: var(--white);
}

.gallery-section {
  padding-top: 34px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-item {
  overflow: hidden;
  margin: 0;
  cursor: zoom-in;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.gallery-item.tall img {
  height: 578px;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.wide img {
  height: 360px;
}

.gallery-item figcaption {
  padding: 16px 18px 18px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.96rem;
}

.dark {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #081221 0%, #10294c 100%);
}

.dark::before {
  content: '';
  position: absolute;
  inset: auto auto -120px -120px;
  width: 300px;
  height: 300px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(44,133,255,0.22), rgba(44,133,255,0));
}

.light h2,
.light p,
.dark .section-label {
  color: var(--white);
}

.dark .section-label {
  background: rgba(255,255,255,0.1);
}

.feature-box {
  padding: 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: none;
}

.feature-box h3 {
  color: var(--white);
}

.feature-box p {
  color: rgba(255,255,255,0.78);
}

.quick-replies {
  background: linear-gradient(180deg, rgba(255,255,255,0.24), rgba(255,255,255,0));
}

.quick-card {
  padding: 24px;
}

.quick-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.quick-card h3 {
  margin-top: 0;
}

.quick-card blockquote {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(15, 103, 219, 0.06);
  border: 1px dashed rgba(15, 103, 219, 0.18);
  color: var(--primary-deep);
  font-weight: 600;
}

.step {
  padding: 24px;
}

.step span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  background: rgba(15, 103, 219, 0.11);
  color: var(--primary-dark);
  margin-bottom: 14px;
}

.cta-strip {
  padding-top: 0;
}

.cta-strip-inner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0f67db 0%, #0a48b8 100%);
  color: white;
  padding: 40px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow);
}

.cta-strip-inner::after {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  right: -60px;
  top: -80px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,255,255,0.2), rgba(255,255,255,0));
}

.cta-strip-inner h2,
.cta-strip-inner p {
  color: white;
  margin-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.contact-list div {
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.82);
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.contact-list a {
  color: var(--primary-dark);
  font-weight: 700;
}

.contact-form {
  padding: 28px;
}

.form-head {
  margin-bottom: 16px;
}

.form-head h3 {
  margin-bottom: 8px;
}

.form-head p {
  margin: 0;
}

.contact-form label {
  display: block;
  margin-bottom: 16px;
  font-weight: 600;
  color: var(--text);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid rgba(15, 103, 219, 0.14);
  border-radius: 16px;
  padding: 14px 16px;
  color: var(--text);
  background: rgba(251, 253, 255, 0.95);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(15, 103, 219, 0.45);
  box-shadow: 0 0 0 5px rgba(15, 103, 219, 0.09);
  transform: translateY(-1px);
}

.shortcut-pill {
  border: none;
  cursor: pointer;
}

.form-alert {
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 600;
  margin-bottom: 18px;
}

.form-alert.success {
  background: #ebfff3;
  color: #0b7b43;
}

.form-alert.error {
  background: #fff0f0;
  color: #be123c;
}

.footer {
  padding: 28px 0 110px;
  border-top: 1px solid rgba(15, 103, 219, 0.08);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-weight: 700;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 65;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.whatsapp-float,
.quick-widget-toggle {
  padding: 14px 18px;
  border-radius: 999px;
  color: white;
  font-weight: 800;
  border: none;
  cursor: pointer;
  box-shadow: 0 18px 35px rgba(15, 103, 219, 0.28);
}

.whatsapp-float {
  background: linear-gradient(135deg, #0f67db 0%, #2c85ff 100%);
}

.quick-widget-toggle {
  background: linear-gradient(135deg, #081e42 0%, #0f67db 100%);
}

.quick-widget {
  position: fixed;
  right: 18px;
  bottom: 144px;
  width: min(360px, calc(100% - 24px));
  z-index: 66;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(18px);
  border-radius: 26px;
  border: 1px solid rgba(15, 103, 219, 0.12);
  box-shadow: var(--shadow-strong);
  padding: 18px;
  transform: translateY(16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.quick-widget.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.quick-widget-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.quick-widget-header strong {
  display: block;
  font-size: 1rem;
  color: #0b2040;
}

.quick-widget-header span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.quick-widget-close,
.lightbox-close {
  border: none;
  background: rgba(15, 103, 219, 0.08);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  font-size: 1.35rem;
  cursor: pointer;
  color: var(--primary-dark);
}

.quick-widget-body {
  display: grid;
  gap: 10px;
}

.widget-option {
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(15, 103, 219, 0.1);
  background: rgba(247, 251, 255, 0.95);
  color: #0b2040;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.widget-option:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 103, 219, 0.28);
  background: rgba(237, 245, 255, 0.96);
}

.widget-option-wa {
  background: linear-gradient(135deg, rgba(15,103,219,0.1), rgba(44,133,255,0.16));
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(4, 11, 21, 0.86);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: min(1100px, 100%);
  max-height: calc(100vh - 80px);
  border-radius: 20px;
  box-shadow: var(--shadow-strong);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.12);
  color: white;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
}

.reveal.visible {
  animation: floatUp 0.7s ease forwards;
}

@media (max-width: 1080px) {
  .hero-grid,
  .section-grid,
  .contact-grid,
  .cards,
  .feature-grid,
  .timeline,
  .gallery-grid,
  .quick-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item.wide {
    grid-column: span 2;
  }

  .gallery-item.tall img {
    height: 360px;
  }

  .hero-mini-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .section-grid,
  .contact-grid,
  .cards,
  .feature-grid,
  .timeline,
  .gallery-grid,
  .quick-grid,
  .footer-inner {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .hero-visual {
    min-height: 560px;
  }

  .hero-main-image {
    inset: 76px 0 96px 0;
  }

  .logo-box {
    width: 240px;
  }

  .stats-box {
    width: 260px;
  }

  .accent-box {
    right: 10px;
    top: 10px;
  }

  .gallery-item.wide {
    grid-column: span 1;
  }

  .gallery-item img,
  .gallery-item.wide img,
  .gallery-item.tall img {
    height: 320px;
  }
}

@media (max-width: 768px) {
  .navbar {
    min-height: 82px;
  }

  .brand img {
    width: 78px;
    height: 78px;
  }

  .menu-toggle {
    display: block;
  }

  .menu {
    position: absolute;
    right: 16px;
    top: 76px;
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(15, 103, 219, 0.09);
    border-radius: 20px;
    padding: 16px;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    min-width: 240px;
  }

  .menu.open {
    display: flex;
  }

  .hero,
  .section {
    padding: 68px 0;
  }

  .cta-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand span {
    display: none;
  }

  .hero h1 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .hero-visual {
    min-height: 500px;
  }

  .hero-main-image {
    inset: 82px 0 96px 0;
  }

  .logo-box {
    top: 0;
    width: 220px;
    padding: 14px;
  }

  .logo-box img {
    width: 72px;
    height: 72px;
  }

  .stats-box {
    width: calc(100% - 24px);
    right: 12px;
    bottom: 0;
  }

  .accent-box {
    width: 180px;
    right: 10px;
    top: 18px;
    padding: 14px;
  }

  .hero-overlay strong {
    font-size: 1.1rem;
  }

  .floating-actions {
    right: 14px;
    bottom: 14px;
  }

  .whatsapp-float,
  .quick-widget-toggle {
    padding: 12px 16px;
  }

  .quick-widget {
    right: 12px;
    bottom: 132px;
  }
}



/* Logo maior e mais chamativa */
.logo img,
.site-header .logo img,
header .logo img,
.navbar .logo img {
    max-height: 110px !important;
    width: auto;
    display: block;
    filter: drop-shadow(0 8px 18px rgba(0,0,0,0.28));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo img:hover,
.site-header .logo img:hover,
header .logo img:hover,
.navbar .logo img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 10px 22px rgba(0,0,0,0.36));
}

.logo,
.site-header .logo,
header .logo,
.navbar .logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo span,
.site-header .logo span,
header .logo span,
.navbar .logo span {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

@media (max-width: 768px) {
    .logo img,
    .site-header .logo img,
    header .logo img,
    .navbar .logo img {
        max-height: 85px !important;
    }
}

/* Ajuste da logo no topo: maior e com visual mais técnico */
.navbar {
  min-height: 108px;
}

.brand {
  gap: 18px;
}

.brand img {
  width: 160px;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  padding: 0;
}

.brand strong {
  font-size: 1.75rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #10243e;
}

.brand span {
  font-size: 1rem;
  line-height: 1.25;
  color: #60748a;
  margin-top: 6px;
  max-width: 360px;
}

@media (max-width: 1080px) {
  .brand img {
    width: 135px;
  }

  .brand strong {
    font-size: 1.45rem;
  }

  .brand span {
    font-size: 0.95rem;
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .navbar {
    min-height: 92px;
  }

  .brand img {
    width: 118px;
  }

  .brand strong {
    font-size: 1.1rem;
  }
}
