:root {
  --blue-950: #061c35;
  --blue-900: #0a2f57;
  --blue-800: #124979;
  --blue-700: #1d64a0;
  --blue-500: #3a88ca;
  --ink-900: #1c2733;
  --ink-700: #4f5f71;
  --ink-500: #78889a;
  --line: #d8e0e8;
  --surface-100: #f4f7fb;
  --surface-200: #eaf0f7;
  --white: #ffffff;
  --ok: #1ca660;
  --radius-s: 12px;
  --radius-m: 18px;
  --radius-l: 28px;
  --radius-pill: 999px;
  --shadow-soft: 0 18px 36px rgba(8, 27, 49, 0.1);
  --shadow-strong: 0 20px 50px rgba(8, 27, 49, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink-900);
  background:
    radial-gradient(circle at 8% 5%, rgba(58, 136, 202, 0.14), transparent 28%),
    radial-gradient(circle at 92% 90%, rgba(29, 100, 160, 0.12), transparent 32%),
    linear-gradient(180deg, #f6f9fd 0%, #fdfefe 48%, #f4f7fb 100%);
  background-size: 120% 120%;
  animation: bgDrift 18s ease-in-out infinite alternate;
}

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

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

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 92px 0;
}

.eyebrow {
  margin: 0 0 12px;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue-700);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Rajdhani", sans-serif;
  line-height: 1.08;
  letter-spacing: 0.01em;
}

p {
  margin: 0;
  line-height: 1.65;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-pill);
  padding: 13px 24px;
  border: 1px solid transparent;
  font-size: 0.93rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.22s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn-sm {
  padding: 10px 18px;
  font-size: 0.86rem;
}

.btn-solid {
  color: var(--white);
  background: linear-gradient(140deg, var(--blue-700), var(--blue-900));
  box-shadow: var(--shadow-soft);
}

.btn-solid::after {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  width: 34%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: skewX(-18deg);
  transition: transform 0.45s ease;
}

.btn-solid:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.btn-solid:hover::after {
  transform: translateX(260%) skewX(-18deg);
}

.btn-outline-dark {
  border-color: #b8c5d4;
  color: var(--blue-900);
  background: var(--white);
}

.btn-outline-dark:hover {
  border-color: var(--blue-700);
}

.card {
  background: var(--white);
  border: 1px solid rgba(10, 47, 87, 0.1);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-soft);
}

.topbar {
  background: linear-gradient(90deg, var(--blue-950), var(--blue-800));
  color: #d8ebff;
  font-size: 0.84rem;
}

.topbar-wrap {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.topbar-links {
  display: flex;
  gap: 18px;
  font-weight: 700;
}

.topbar-links a {
  position: relative;
}

.topbar-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: rgba(216, 235, 255, 0.8);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s ease;
}

.topbar-links a:hover::after {
  transform: scaleX(1);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(10, 47, 87, 0.09);
  backdrop-filter: blur(8px);
  transition: box-shadow 0.2s ease;
}

.site-header.scrolled {
  box-shadow: 0 10px 26px rgba(12, 32, 54, 0.12);
}

.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  background: var(--white);
  border-radius: var(--radius-s);
  padding: 8px 12px;
  border: 0;
  box-shadow: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.brand img {
  width: 190px;
  height: auto;
}

.brand:hover {
  transform: translateY(-2px);
  box-shadow: none;
}

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

.site-menu a {
  color: var(--blue-900);
  font-weight: 800;
  font-size: 0.9rem;
}

.site-menu a:not(.btn) {
  position: relative;
}

.site-menu a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-700), var(--blue-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s ease;
}

.site-menu a:not(.btn):hover {
  color: var(--blue-700);
}

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

.site-menu a.btn-solid,
.site-menu a.btn-solid:hover {
  color: var(--white);
}

.menu-dropdown {
  position: relative;
}

.menu-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 12px;
}

.menu-parent {
  display: inline-flex;
  align-items: center;
}

.submenu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 260px;
  padding: 10px;
  border-radius: 14px;
  border: 1px solid rgba(10, 47, 87, 0.14);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-soft);
  display: none;
  flex-direction: column;
  gap: 6px;
  z-index: 40;
}

.menu-dropdown:hover .submenu,
.menu-dropdown:focus-within .submenu {
  display: flex;
}

.submenu a {
  padding: 9px 10px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 700;
}

.submenu a:not(.btn)::after {
  display: none;
}

.submenu a:hover {
  background: #eef6ff;
  color: var(--blue-700);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 38px;
  height: 34px;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  margin: 5px 0;
  border-radius: 3px;
  background: var(--blue-900);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 84px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(136deg, rgba(10, 47, 87, 0.06) 0%, rgba(29, 100, 160, 0.04) 46%, rgba(58, 136, 202, 0.1) 100%);
  background-size: 130% 130%;
  animation: heroFlow 16s ease-in-out infinite alternate;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 34px;
}

.hero-copy h1 {
  font-size: clamp(2rem, 4.4vw, 3.8rem);
  color: var(--blue-900);
  max-width: 750px;
}

.hero-copy > p {
  margin-top: 16px;
  max-width: 620px;
  color: var(--ink-700);
  font-size: 1.03rem;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-checklist {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.hero-checklist li {
  position: relative;
  padding-left: 24px;
  font-weight: 600;
  color: var(--ink-700);
}

.hero-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--blue-700), var(--blue-500));
  box-shadow: 0 0 0 4px rgba(29, 100, 160, 0.12);
}

.hero-media {
  position: relative;
  min-height: 530px;
}

.hero-media-main {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: var(--radius-l);
}

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

.hero-badge {
  position: absolute;
  right: 0;
  bottom: 20px;
  padding: 16px 20px;
  border-radius: 18px;
  background: linear-gradient(140deg, var(--blue-900), var(--blue-700));
  color: var(--white);
  min-width: 210px;
  animation: floatBadge 4.2s ease-in-out infinite;
}

.hero-badge span {
  display: block;
  font-size: 0.85rem;
  color: #d4e9ff;
}

.hero-badge strong {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.48rem;
}

.metrics {
  padding: 18px 0 38px;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.metric-card {
  padding: 22px;
  background: var(--white);
  border: 1px solid rgba(10, 47, 87, 0.09);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-soft);
  min-height: 148px;
  display: grid;
  align-content: center;
  gap: 8px;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.metric-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(29, 100, 160, 0.35);
}

.metric-card strong {
  display: block;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.8rem;
  color: var(--blue-900);
  line-height: 1;
}

.metric-card p {
  color: var(--ink-700);
  font-size: 0.95rem;
}

.metric-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(29, 100, 160, 0.15), rgba(58, 136, 202, 0.12));
  color: var(--blue-800);
  font-size: 1.2rem;
}

.section-head h2 {
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  color: var(--blue-900);
  max-width: 900px;
}

.section-head p {
  margin-top: 13px;
  max-width: 760px;
  color: var(--ink-700);
}

.showcase {
  background: linear-gradient(180deg, #f2f7fc 0%, #edf3f9 100%);
}

.showcase-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: start;
}

.showcase-card {
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid rgba(10, 47, 87, 0.1);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-soft);
  min-height: 170px;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.showcase-card h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-900);
  font-size: 1.7rem;
}

.showcase-card p {
  margin-top: 10px;
  color: var(--ink-700);
}

.product-focus {
  padding: 74px 0;
}

.product-focus-alt {
  background: linear-gradient(180deg, #f7fbff 0%, #eef5fc 100%);
}

.product-focus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.product-focus-grid.is-reverse .product-focus-media {
  order: 2;
}

.product-focus-grid.is-reverse .product-focus-copy {
  order: 1;
}

.product-focus-media {
  margin: 0;
  border-radius: var(--radius-l);
  overflow: hidden;
  border: 1px solid rgba(10, 47, 87, 0.12);
  box-shadow: var(--shadow-soft);
}

.product-focus-media img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.who-we-are-carousel {
  position: relative;
  min-height: 300px;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.carousel-slide.is-active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.55);
}

.carousel-dot.is-active {
  background: #ffffff;
}

.product-focus-copy {
  padding: 30px;
  border-radius: var(--radius-l);
  background: var(--white);
  border: 1px solid rgba(10, 47, 87, 0.12);
  box-shadow: var(--shadow-soft);
  display: grid;
  align-content: center;
  gap: 12px;
}

.product-focus-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--blue-900);
}

.product-focus-copy p {
  color: var(--ink-700);
}

.product-focus-list {
  margin: 0;
  padding: 0 0 0 18px;
  display: grid;
  gap: 8px;
}

.product-focus-list li {
  color: var(--ink-700);
}

.showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(29, 100, 160, 0.32);
}

.showcase-card ul {
  margin: 10px 0 0;
  padding: 0 0 0 18px;
  display: grid;
  gap: 8px;
}

.showcase-card li {
  color: var(--ink-700);
}

.photo-showcase {
  background: linear-gradient(180deg, #f7fbff 0%, #eef5fc 100%);
}

.photo-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.photo-card {
  margin: 0;
  border-radius: var(--radius-m);
  overflow: hidden;
  border: 1px solid rgba(10, 47, 87, 0.12);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.photo-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.photo-card figcaption {
  padding: 11px 14px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--blue-900);
}

.photo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(29, 100, 160, 0.35);
}

.products {
  background:
    radial-gradient(circle at 86% 25%, rgba(58, 136, 202, 0.12), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #f1f6fd 100%);
}

.product-tags {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(29, 100, 160, 0.18);
  background: #f5faff;
  color: var(--blue-900);
  font-size: 0.9rem;
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.product-tags a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(29, 100, 160, 0.18);
  background: #f5faff;
  color: var(--blue-900);
  font-size: 0.9rem;
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.product-tags span:hover {
  transform: translateY(-2px);
  border-color: rgba(29, 100, 160, 0.45);
  background: #e9f4ff;
}

.product-tags a:hover {
  transform: translateY(-2px);
  border-color: rgba(29, 100, 160, 0.45);
  background: #e9f4ff;
}

.catalog {
  margin-top: 28px;
}

.catalog-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(10, 47, 87, 0.16);
  background: var(--white);
  color: var(--blue-900);
  font-weight: 800;
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.tab-btn:hover {
  border-color: var(--blue-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(14, 54, 97, 0.14);
}

.tab-btn.is-active {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(140deg, var(--blue-700), var(--blue-900));
}

.catalog-content {
  margin-top: 16px;
}

.catalog-panel {
  display: none;
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(10, 47, 87, 0.1);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-soft);
}

.catalog-panel.is-active {
  display: block;
  animation: panelIn 0.34s ease both;
}

.panel-top {
  display: block;
}

.panel-top h3 {
  color: var(--blue-900);
  font-size: 2.05rem;
}

.catalog-panel > p {
  margin-top: 14px;
  color: var(--ink-700);
}

.panel-link {
  margin-top: 18px;
}

.panel-columns {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.panel-columns div {
  background: var(--surface-100);
  border: 1px solid #dfe7f0;
  border-radius: var(--radius-s);
  padding: 16px;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.panel-columns div:hover {
  transform: translateY(-3px);
  border-color: rgba(29, 100, 160, 0.35);
  box-shadow: 0 10px 22px rgba(14, 54, 97, 0.1);
}

.panel-columns h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.36rem;
  color: var(--blue-900);
}

.ico.material-symbols-rounded {
  font-style: normal;
  font-size: 1.18rem;
  line-height: 1;
  font-variation-settings:
    "FILL" 0,
    "wght" 600,
    "GRAD" 0,
    "opsz" 24;
}

.product-tags .ico.material-symbols-rounded {
  font-size: 1rem;
}

.tab-btn .ico.material-symbols-rounded {
  font-size: 1.05rem;
}

.panel-columns ul {
  margin: 10px 0 0;
  padding: 0 0 0 18px;
  display: grid;
  gap: 8px;
}

.panel-columns li {
  color: var(--ink-700);
  font-size: 0.94rem;
}

.segments-wrap {
  background: var(--white);
  border: 1px solid rgba(10, 47, 87, 0.09);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-soft);
  padding: 36px;
}

.segment-list {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.segment-list span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-s);
  padding: 15px 14px;
  border: 1px solid rgba(10, 47, 87, 0.12);
  background: linear-gradient(180deg, #f8fbff 0%, #f2f7fd 100%);
  color: var(--blue-900);
  font-weight: 800;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.segment-list span:hover {
  transform: translateY(-2px);
  border-color: rgba(29, 100, 160, 0.35);
  box-shadow: 0 10px 20px rgba(14, 54, 97, 0.1);
}

.segment-list .ico.material-symbols-rounded {
  font-size: 1.12rem;
}

.location {
  background: linear-gradient(180deg, #eff4fb 0%, #f6f9fd 100%);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.location-image {
  margin: 0;
  border-radius: var(--radius-l);
  overflow: hidden;
  border: 1px solid rgba(10, 47, 87, 0.1);
  box-shadow: var(--shadow-soft);
}

.location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.location-image:hover img {
  transform: scale(1.05);
}

.location-card {
  padding: 32px;
  border-radius: var(--radius-l);
  background: linear-gradient(150deg, var(--blue-900), var(--blue-700));
  color: var(--white);
  box-shadow: var(--shadow-strong);
}

.location-card .eyebrow {
  color: #b8dbff;
}

.location-card h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.location-card > p {
  margin-top: 6px;
  color: #d6e8fb;
}

.location-actions {
  margin-top: 24px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.location-map {
  margin-top: 18px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.location-map iframe {
  width: 100%;
  height: 260px;
  border: 0;
}

.location-card .btn-outline-dark {
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
  background: transparent;
}

.location-card .btn-outline-dark:hover {
  background: rgba(255, 255, 255, 0.14);
}

.contact {
  background:
    radial-gradient(circle at 92% 15%, rgba(58, 136, 202, 0.15), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #f3f7fd 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.contact-info h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  color: var(--blue-900);
}

.contact-info > p {
  margin-top: 12px;
  max-width: 620px;
  color: var(--ink-700);
}

.contact-cards {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.contact-card {
  padding: 16px;
  border-radius: var(--radius-s);
  background: var(--white);
  border: 1px solid rgba(10, 47, 87, 0.12);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(29, 100, 160, 0.35);
}

.contact-card strong {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue-900);
  font-family: "Rajdhani", sans-serif;
  font-size: 1.2rem;
}

.contact-card span {
  color: var(--ink-700);
  font-size: 0.9rem;
}

.contact-whatsapp-wrap {
  padding: 24px;
  border-radius: var(--radius-l);
  background: var(--white);
  border: 1px solid rgba(10, 47, 87, 0.11);
  box-shadow: var(--shadow-strong);
  display: grid;
  gap: 14px;
  align-content: start;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.contact-whatsapp-wrap:hover {
  transform: translateY(-4px);
  border-color: rgba(29, 100, 160, 0.35);
  box-shadow: 0 24px 42px rgba(8, 27, 49, 0.2);
}

.contact-whatsapp-wrap h3 {
  color: var(--blue-900);
  font-size: 2rem;
}

.contact-whatsapp-wrap p {
  color: var(--ink-700);
}

.contact-main-cta {
  width: 100%;
}

.contact-quick-actions {
  display: grid;
  gap: 10px;
}

.contact-quick {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(10, 47, 87, 0.16);
  border-radius: 12px;
  min-height: 46px;
  padding: 10px 12px;
  font-weight: 800;
  color: var(--blue-900);
  background: var(--surface-100);
  transition: all 0.2s ease;
}

.contact-quick:hover {
  transform: translateY(-2px);
  border-color: var(--blue-700);
  background: #eef6ff;
}

.contact-whatsapp-wrap small {
  color: var(--ink-500);
  font-size: 0.82rem;
}

.site-footer {
  background: linear-gradient(160deg, var(--blue-950) 0%, var(--blue-900) 45%, var(--blue-800) 100%);
  color: #d9e8f8;
  padding: 50px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.footer-brand img {
  width: 176px;
  margin-bottom: 14px;
  background: #ffffff;
  border-radius: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
}

.footer-grid p,
.footer-grid a,
.footer-grid span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.92rem;
}

.footer-grid a {
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-grid a:hover {
  color: #ffffff;
  transform: translateX(2px);
}

.footer-grid p:first-child {
  color: #ffffff;
  font-weight: 800;
}

.footer-bottom {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-bottom p {
  text-align: center;
  font-size: 0.86rem;
}

.floating-whatsapp {
  position: relative;
  right: 92px;
  bottom: 16px;
  z-index: 40;
  position: fixed;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: transform 0.2s ease;
}

.floating-whatsapp::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  animation: pulseRing 2.4s ease-out infinite;
}

.floating-whatsapp {
  background: linear-gradient(135deg, #26d06a, var(--ok));
  box-shadow: 0 14px 28px rgba(28, 166, 96, 0.38);
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
}

.floating-whatsapp::before {
  border: 2px solid rgba(38, 208, 106, 0.35);
}

.floating-whatsapp svg {
  width: 30px;
  fill: var(--white);
}

/* ChatbotMaker fica na posicao padrao; WhatsApp foi deslocado para a esquerda. */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

.hero-media:hover .hero-media-main img {
  transform: scale(1.05);
}

@keyframes bgDrift {
  0% {
    background-position: 0% 0%, 100% 100%, 50% 0%;
  }
  100% {
    background-position: 6% 4%, 96% 94%, 50% 100%;
  }
}

@keyframes heroFlow {
  0% {
    background-position: 0% 25%;
  }
  100% {
    background-position: 100% 75%;
  }
}

@keyframes floatBadge {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

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

@keyframes pulseRing {
  0% {
    transform: scale(0.88);
    opacity: 0.9;
  }
  80%, 100% {
    transform: scale(1.18);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 1120px) {
  .site-menu {
    position: absolute;
    left: 4vw;
    right: 4vw;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(10, 47, 87, 0.14);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    padding: 16px;
  }

  .site-menu.is-open {
    display: flex;
  }

  .menu-dropdown {
    display: grid;
    gap: 8px;
  }

  .submenu {
    position: static;
    min-width: 0;
    display: grid;
    border-radius: 12px;
    box-shadow: none;
    background: #f7fafe;
  }

  .menu-toggle {
    display: block;
  }

  .hero-grid,
  .showcase-grid,
  .location-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .product-focus-grid {
    grid-template-columns: 1fr;
  }

  .product-focus-grid.is-reverse .product-focus-media,
  .product-focus-grid.is-reverse .product-focus-copy {
    order: initial;
  }

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

  .panel-columns {
    grid-template-columns: 1fr;
  }

  .photo-grid {
    grid-template-columns: 1fr;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .segment-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .location-map iframe {
    height: 240px;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 68px 0;
  }

  .topbar-wrap {
    min-height: initial;
    padding: 8px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar-links {
    flex-wrap: wrap;
    gap: 10px 14px;
  }

  .nav-wrap {
    min-height: 74px;
  }

  .brand img {
    width: 154px;
  }

  .hero {
    padding-top: 64px;
  }

  .hero-copy h1 {
    font-size: clamp(1.75rem, 9vw, 2.5rem);
  }

  .hero-media {
    min-height: 430px;
  }

  .hero-badge {
    right: 8px;
    bottom: 8px;
    min-width: 180px;
    padding: 14px 16px;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .segment-list {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .segments-wrap {
    padding: 24px;
  }

  .location-map iframe {
    height: 220px;
  }
}
