/* =========================================================
   LEHMANN SERVIÇOS NÁUTICOS — STYLES
   Cores do brand: 
     primary:   #142b8a (azul profundo)
     secondary: #14aadb (ciano)
     text:      #121e30
     page bg:   #000a31
   Fontes: Inter (títulos), Poppins (texto)
========================================================= */

:root {
  --color-primary: #142b8a;
  --color-secondary: #14aadb;
  --color-text: #121e30;
  --color-text-soft: #475569;
  --color-bg: #ffffff;
  --color-page-bg: #000a31;
  --color-dark: #000a31;
  --color-dark-2: #000b35;
  --color-dark-3: #081a59;
  --color-light: #fafafa;

  --font-body: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-head: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 999px;

  --container-max: 1200px;

  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.18);

  --header-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden; /* impede scroll horizontal quando seções usam 100vw */
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none !important; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--color-text);
}
p { margin: 0; }
ul { list-style: none; margin: 0; padding: 0; }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.anchor {
  display: block;
  position: relative;
  top: calc(var(--header-h) * -1);
  visibility: hidden;
}

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  margin: 0;
}
.eyebrow-light {
  color: rgba(255, 255, 255, 0.7);
}

.gradient-text {
  background: linear-gradient(90deg, #1fc8ff 0%, #ffffff 50%, var(--color-secondary) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: gradientFlow 4s ease infinite;
}
@keyframes gradientFlow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.btn .material-icons { font-size: 20px; }
.btn-primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.btn-primary:hover {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: var(--color-secondary);
}
.btn-outline:hover {
  background: var(--color-secondary);
}
.btn-secondary {
  background: var(--color-secondary);
  color: #fff;
  border-color: var(--color-primary);
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 14px 28px;
}
.btn-secondary:hover {
  background: var(--color-primary);
  border-color: var(--color-secondary);
  transform: translateY(-2px);
}

/* =====================================================
   FULL-WIDTH BREAKOUT
   Quando o site está dentro de um container do WordPress
   ou tema, força todas as seções top-level a ocuparem
   100% da largura da viewport.
===================================================== */
body > header.site-header,
body > section,
body > footer.site-footer,
.site-header,
.hero,
.top-features,
.about,
.reels,
.big-title-wrap,
.benefits-grid-section,
.products-section,
.gallery-section,
.mc2,
.comfort,
.cta-band,
.contact-section,
.site-footer {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  box-sizing: border-box;
}

/* =====================================================
   HEADER
===================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #000f4b;
  padding: 8px 24px;
  box-shadow: 0 1px 12px rgba(2, 6, 23, 0.45);
}
.site-header a,
.main-nav a,
.submenu-item,
.cta-btn,
.social-row a,
.footer-link,
.footer-menu a {
  text-decoration: none !important;
}
.header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 60px;
}
.logo img {
  height: 52px;
  width: auto;
}
.main-nav ul {
  display: flex;
  gap: 8px;
  align-items: center;
}
.main-nav a {
  display: inline-block;
  padding: 10px 12px;
  color: #fffefe;
  font-size: 14px;
  font-weight: 400;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s, transform 0.2s;
}
.main-nav a:hover {
  color: var(--color-secondary);
  background: rgba(20, 170, 219, 0.1);
  transform: translateY(-2px);
}

/* Submenu dropdown */
.has-submenu { position: relative; }
.submenu-trigger {
  display: inline-flex !important;
  align-items: center;
  gap: 4px;
}
.submenu-caret {
  font-size: 16px !important;
  transition: transform 0.25s ease;
  margin-left: -2px;
}
.has-submenu:hover .submenu-caret,
.has-submenu.open .submenu-caret { transform: rotate(180deg); }

.submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 8px);
  width: 460px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 20px 48px rgba(0, 8, 40, 0.22);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 110;
}
.submenu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 3px;
}
.submenu::after {
  /* invisible bridge to keep dropdown open while moving cursor */
  content: "";
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}
.has-submenu:hover .submenu,
.has-submenu.open .submenu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 4px);
}
.submenu-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.submenu-item {
  display: flex !important;
  gap: 14px;
  align-items: flex-start;
  padding: 14px !important;
  border-radius: 10px;
  color: var(--color-text) !important;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  font-size: 14px !important;
}
.submenu-item:hover {
  background: rgba(20, 170, 219, 0.08) !important;
  transform: none !important;
}
.submenu-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.submenu-icon .material-icons { font-size: 22px; }
.submenu-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1.35;
}
.submenu-text strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sub-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(20, 170, 219, 0.18);
  color: var(--color-secondary);
  letter-spacing: 0.05em;
}
.submenu-text span {
  font-size: 12px;
  color: var(--color-text-soft);
  font-weight: 400;
}
.submenu-text em {
  font-style: normal;
  font-size: 11px;
  color: var(--color-secondary);
  font-weight: 600;
  letter-spacing: 0.03em;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.social-row {
  display: flex;
  gap: 10px;
}
.social-row a {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  transition: all 0.2s;
}
.social-row a:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.25s;
}
.cta-btn:hover {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  transform: translateY(-2px);
}
.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  border-radius: 8px;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================================================
   HERO
===================================================== */
.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: flex-end;
  padding: 300px 24px 80px;
  background: var(--color-page-bg);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("https://cometamarketing.com.br/wp-content/uploads/2026/03/hero-site-lehmann.jpg") center top / contain no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 43, 138, 0) 31%, #000a31 70%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.hero-title {
  font-size: 53px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  text-shadow: 1px 3px 7px rgba(0, 0, 188, 0.3);
}
.hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.89);
  line-height: 1.5;
  margin: 10px 0;
}
.hero-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* =====================================================
   TOP FEATURES (3 cards on dark gradient)
===================================================== */
.top-features {
  background: linear-gradient(45deg, var(--color-dark-2) 21%, var(--color-dark-3) 57%);
  padding: 0;
}
.top-features .container { padding: 0 24px; }
.top-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.tf-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 28px 24px;
  color: #fff;
}
.tf-item:nth-child(1) { border-right: 1px solid rgba(255,255,255,0.08); }
.tf-item:nth-child(2) { border-right: 1px solid rgba(255,255,255,0.08); }
.tf-icon {
  font-size: 52px !important;
  color: var(--color-secondary);
  flex-shrink: 0;
}
.tf-item h3 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 6px;
}
.tf-item p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.5;
}

/* =====================================================
   ABOUT
===================================================== */
.about {
  padding: 80px 24px 0;
  background: #fff;
  position: relative;
}
.about .container { padding: 0 6px; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.video-frame {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-md);
}
.ratio-16x9 { aspect-ratio: 16 / 9; }
.ratio-9x16 { aspect-ratio: 9 / 16; }
.video-frame iframe,
.video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.about-text { display: flex; flex-direction: column; gap: 16px; }
.about-text h2 {
  font-size: 36px;
  font-weight: 700;
}
.about-text p {
  font-size: 16px;
  color: var(--color-text-soft);
  line-height: 1.6;
}

/* =====================================================
   REELS (3 vertical videos)
===================================================== */
.reels {
  padding: 80px 24px;
  background: #fff;
}
.reels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.reel-card {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
.reel-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =====================================================
   BIG TITLE
===================================================== */
.big-title-wrap {
  background: #fff;
  padding: 72px 24px 30px;
  text-align: center;
}
.big-title-container { max-width: 860px; }
.big-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.bt-prefix {
  color: var(--color-text);
  display: block;
  margin-bottom: 8px;
}
.big-title .gradient-text {
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-primary));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* =====================================================
   BENEFITS GRID (2x3)
===================================================== */
.benefits-grid-section {
  padding: 30px 24px 50px;
  background: #fff;
}
.benefits-grid-section .container {
  max-width: calc(var(--container-max) * 0.9);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.benefit-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px 0;
}
.benefit-icon {
  background: rgba(20, 170, 219, 0.2);
  border-radius: 999px;
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.benefit-icon .material-icons {
  font-size: 45px;
  color: var(--color-secondary);
}
.benefit-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 6px;
}
.benefit-card p {
  font-size: 15px;
  color: var(--color-text-soft);
  line-height: 1.55;
}

/* =====================================================
   GALLERY
===================================================== */
.gallery-section {
  background: #fff;
  padding: 64px 0 0;
}
.gallery-header {
  text-align: center;
  margin-bottom: 28px;
}
.gallery-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-text);
  margin: 6px 0 22px;
}
.gallery-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  background: #f1f5f9;
  padding: 6px;
  border-radius: var(--radius-pill);
}
.gallery-tab {
  background: transparent;
  border: none;
  padding: 10px 22px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-soft);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background 0.25s, color 0.25s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.gallery-tab .count {
  background: rgba(20, 43, 138, 0.1);
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
  transition: background 0.25s, color 0.25s;
}
.gallery-tab:hover {
  color: var(--color-primary);
}
.gallery-tab.active {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(20, 43, 138, 0.25);
}
.gallery-tab.active .count {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
}
.gallery-grid .gi {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  cursor: pointer;
  background: #f1f5f9;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.gallery-grid .gi.hidden {
  display: none;
}
.gallery-grid .gi img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.gallery-grid .gi:hover img {
  transform: scale(1.04);
  opacity: 0.92;
}

/* =====================================================
   MC2 (Parallax + 2 cols)
===================================================== */
.mc2 {
  position: relative;
  padding: 110px 30px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(20, 170, 219, 0.18), transparent 65%),
    linear-gradient(180deg, #02061f 0%, #050b35 45%, #02061f 100%);
}
/* Parallax photo, dimmed and tinted */
.mc2-bg {
  position: absolute;
  inset: 0;
  background: url("https://cometamarketing.com.br/wp-content/uploads/2026/03/hero-site-lehman.jpg") center / cover no-repeat fixed;
  opacity: 0.35;
  filter: saturate(0.85) hue-rotate(-10deg);
  z-index: -4;
}
/* Soft color overlay over the photo */
.mc2-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(20, 43, 138, 0.55), transparent 60%),
    radial-gradient(ellipse at 80% 70%, rgba(20, 170, 219, 0.28), transparent 55%),
    linear-gradient(180deg, rgba(2,6,31,0.85) 0%, rgba(5,11,53,0.78) 50%, rgba(2,6,31,0.92) 100%);
  z-index: -3;
}
/* Fine grid texture */
.mc2::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 0%, transparent 75%);
  z-index: -2;
  pointer-events: none;
}
/* Top hairline accent */
.mc2::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20, 170, 219, 0.6), transparent);
  z-index: 1;
  pointer-events: none;
}
.mc2-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: -1;
  pointer-events: none;
  animation: glowDrift 14s ease-in-out infinite alternate;
}
.mc2-glow-1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(20, 170, 219, 0.45), transparent 70%);
  top: -160px;
  left: -140px;
  opacity: 0.75;
}
.mc2-glow-2 {
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(43, 78, 220, 0.55), transparent 70%);
  bottom: -220px;
  right: -180px;
  opacity: 0.65;
  animation-delay: -7s;
}
@keyframes glowDrift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, -30px) scale(1.08); }
}

.mc2 .container { padding: 0 30px; }
.mc2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.mc2-image {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.mc2-image-ring {
  position: absolute;
  width: 88%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 1px solid rgba(20, 170, 219, 0.25);
  box-shadow:
    inset 0 0 80px rgba(20, 170, 219, 0.15),
    0 0 120px rgba(20, 170, 219, 0.2);
  background:
    radial-gradient(circle at center, rgba(20, 170, 219, 0.12), transparent 60%);
  animation: ringPulse 6s ease-in-out infinite;
}
.mc2-image-ring::before,
.mc2-image-ring::after {
  content: "";
  position: absolute;
  inset: -6%;
  border-radius: 50%;
  border: 1px dashed rgba(20, 170, 219, 0.18);
}
.mc2-image-ring::after {
  inset: -14%;
  border-style: solid;
  border-color: rgba(20, 170, 219, 0.08);
}
@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50%      { transform: scale(1.04); opacity: 1; }
}
.mc2-image img {
  position: relative;
  max-width: 100%;
  max-height: 480px;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.45));
  animation: floatY 6s ease-in-out infinite;
}

.mc2-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: #fff;
}
.mc2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-secondary);
  font-weight: 600;
}
.eyebrow-bar {
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--color-secondary);
  border-radius: 2px;
}
.mc2-text h2 {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
}
.mc2-text h2 .highlight {
  background: linear-gradient(90deg, var(--color-secondary), #5be0ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.mc2-text > p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}
.mc2-closing strong {
  color: #fff;
  font-weight: 600;
}

.mc2-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 8px 0 4px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  backdrop-filter: blur(8px);
}
.mc2-stats li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
  position: relative;
}
.mc2-stats li + li::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}
.stat-value {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 700;
  background: linear-gradient(180deg, #fff 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
}
.stat-value small {
  font-size: 22px;
  font-weight: 600;
}
.stat-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
}

.mc2-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.mc2-btn-outline {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.25);
}
.mc2-btn-outline:hover {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
}

/* =====================================================
   PRODUCTS SECTION
===================================================== */
.products-section {
  position: relative;
  background:
    radial-gradient(circle at 80% 0%, rgba(20, 170, 219, 0.12), transparent 50%),
    linear-gradient(180deg, #000a31 0%, #000518 100%);
  padding: 100px 24px;
  color: #fff;
  overflow: hidden;
}
.products-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 70%);
  pointer-events: none;
}
.products-section .container { position: relative; }

.products-header {
  text-align: center;
  margin-bottom: 48px;
  max-width: 760px;
  margin-inline: auto;
}
.products-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin: 10px 0 14px;
  letter-spacing: -0.01em;
}
.products-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}
.products-sub strong {
  color: var(--color-secondary);
  font-weight: 600;
}

.products-tabs {
  display: inline-flex;
  gap: 6px;
  margin-top: 32px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
}
.products-tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-family: inherit;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.25s ease;
}
.products-tab .pt-title { font-size: 14px; font-weight: 700; letter-spacing: 0.04em; }
.products-tab .pt-badge {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.products-tab:hover { color: #fff; }
.products-tab.active {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #fff;
  box-shadow: 0 8px 24px rgba(20, 170, 219, 0.35);
}
.products-tab.active .pt-badge {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.products-grid.hidden { display: none; }
.products-grid.fade-in {
  animation: fadeUp 0.4s ease;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(10px);
}
.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(135deg, transparent, rgba(20, 170, 219, 0.5), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(20, 170, 219, 0.25);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}
.product-card:hover::before { opacity: 1; }

.product-image {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background:
    radial-gradient(circle at 50% 80%, rgba(20, 170, 219, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.04), transparent);
}
.product-image::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 16%;
  height: 10px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.55), transparent 70%);
  filter: blur(6px);
}
.product-image img {
  position: relative;
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.product-card:hover .product-image img {
  transform: scale(1.06) translateY(-4px);
}
.product-body {
  padding: 22px 24px 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.product-name {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.product-suffix {
  font-size: 14px;
  font-weight: 600;
  padding: 3px 10px;
  background: rgba(20, 170, 219, 0.18);
  color: var(--color-secondary);
  border-radius: 999px;
  margin-left: 6px;
  vertical-align: middle;
  letter-spacing: 0.05em;
}
.product-specs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-specs li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 13px;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}
.product-specs li:last-child { border-bottom: none; padding-bottom: 0; }
.spec-label {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}
.spec-value {
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}

.products-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 56px;
  padding: 28px 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  text-align: center;
}
.products-footer p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* =====================================================
   COMFORT
===================================================== */
.comfort {
  background: var(--color-light);
  padding: 80px 50px 50px 30px;
}
.comfort-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.comfort-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.comfort-text h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-primary);
}
.comfort-lead {
  font-size: 16px;
  color: #222;
  font-weight: 300;
  line-height: 1.6;
}
.check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: #374151;
  line-height: 1.5;
}
.check-list .material-icons {
  font-size: 23px;
  color: var(--color-primary);
  flex-shrink: 0;
}
.comfort-image {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.comfort-image > img {
  max-width: 100%;
  max-height: 480px;
  object-fit: contain;
}
.floating-card {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  gap: 15px;
  align-items: center;
  background: rgba(20, 43, 138, 0.85);
  color: #fff;
  padding: 12px 18px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  max-width: 350px;
  backdrop-filter: blur(8px);
  animation: floatY 4s ease-in-out infinite;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.fc-icon {
  background: var(--color-secondary);
  width: 50px;
  height: 50px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fc-icon .material-icons {
  font-size: 24px;
  color: var(--color-primary);
}
.fc-text h4 {
  color: var(--color-secondary);
  font-size: 14px;
  margin: 0 0 2px;
  font-weight: 700;
}
.fc-text p {
  font-size: 12px;
  color: #fff;
  line-height: 1.4;
}

/* =====================================================
   CTA BAND
===================================================== */
.cta-band {
  background: rgba(20, 43, 138, 0.95);
  padding: 56px 24px;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(20, 170, 219, 0.25), transparent 70%);
}
.cta-band-inner {
  position: relative;
  max-width: 900px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band h2 {
  font-size: 28px;
  font-weight: 700;
  color: #e4e4e4;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 8px;
}
.cta-band p {
  color: #709bd3;
  font-size: 16px;
}
.cta-band-btn { animation: floatY 3s ease-in-out infinite; }

/* =====================================================
   CONTACT
===================================================== */
.contact-section {
  background: #e7e7e7;
  padding: 80px 24px;
}
.contact-section .container { max-width: 1100px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.contact-left h2 {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0 0 6px;
}
.contact-desc {
  font-size: 15px;
  color: var(--color-text-soft);
  margin-bottom: 30px;
}
.advantages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.adv-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.adv-item .material-icons {
  font-size: 36px;
  color: var(--color-primary);
}
.adv-item h4 {
  font-size: 14px;
  font-weight: 700;
  margin: 0;
}
.adv-item p {
  font-size: 13px;
  color: var(--color-text-soft);
  line-height: 1.5;
}
.contact-form-wrap {
  background: #f8f8f8;
  padding: 40px 36px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* WhatsApp contact CTA block */
.contact-cta-wrap {
  position: relative;
  background: linear-gradient(135deg, #142b8a 0%, #0a1759 100%);
  color: #fff;
  border-radius: 16px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(20, 43, 138, 0.18);
}
.contact-cta-wrap::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.22), transparent 65%);
  top: -100px;
  right: -100px;
  border-radius: 50%;
  pointer-events: none;
}
.contact-cta-wrap::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(20, 170, 219, 0.2), transparent 65%);
  bottom: -120px;
  left: -80px;
  border-radius: 50%;
  pointer-events: none;
}
.contact-cta-wrap > * { position: relative; z-index: 1; }
.ccta-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: #25d366;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #fff;
  margin-bottom: 4px;
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.4);
}
.contact-cta-wrap h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.25;
  text-transform: none;
  letter-spacing: 0;
}
.ccta-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
  margin: 0;
}
.ccta-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 6px 0 4px;
}
.ccta-list li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.88);
}
.ccta-list .material-icons {
  font-size: 18px;
  color: var(--color-secondary);
}
.ccta-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  margin: 6px 0;
}
.ccta-phone .material-icons {
  color: var(--color-secondary);
  font-size: 22px;
}
.ccta-phone a {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
}
.ccta-btn {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 24px;
  width: 100%;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
}
.ccta-btn:hover {
  background: #1eb958;
  border-color: #1eb958;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.45);
}
.ccta-hours {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin: 4px 0 0;
}
.ccta-hours .material-icons { font-size: 16px; }
.contact-form-wrap h3 {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text);
}
.contact-form label.full { width: 100%; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(20, 170, 219, 0.15);
}
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}
.form-submit {
  align-self: flex-start;
  margin-top: 4px;
}
.form-feedback {
  font-size: 14px;
  margin-top: 6px;
  min-height: 18px;
}
.form-feedback.success { color: #15803d; }
.form-feedback.error { color: #b91c1c; }

/* =====================================================
   FOOTER
===================================================== */
.site-footer {
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.75);
  padding: 64px 24px 24px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.5fr;
  gap: 47px;
  align-items: flex-start;
}
.footer-col h6 {
  color: #f1f5f9;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 12px;
}
.footer-logo {
  max-width: 210px;
  max-height: 48px;
  width: auto;
  height: auto;
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.footer-social {
  display: flex;
  gap: 11px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--color-secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: all 0.2s;
}
.footer-social a:hover {
  background: #04bbf7;
  color: #142d92;
}
.footer-menu li {
  margin-bottom: 8px;
}
.footer-menu a {
  color: #fff;
  font-size: 15px;
  transition: opacity 0.2s;
}
.footer-menu a:hover { opacity: 0.75; }
.footer-link {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}
.footer-link strong {
  color: #f1f5f9;
  font-size: 14px;
  font-weight: 700;
}
.footer-link .material-icons {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.75);
  flex-shrink: 0;
}
.footer-link:hover { color: #fff; }
.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
}

/* =====================================================
   DRAWER CHROME (visible only on mobile)
===================================================== */
.md-header,
.md-footer,
.md-backdrop,
.nav-icon { display: none; }

/* =====================================================
   MOBILE TAB BAR (mobile-only, hidden on desktop)
===================================================== */
.mobile-tabbar { display: none; }

/* =====================================================
   LIGHTBOX
===================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.active { display: flex; }
.lb-image {
  max-width: 92vw;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}
.lb-close,
.lb-prev,
.lb-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: none;
  border-radius: 999px;
  width: 48px;
  height: 48px;
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.lb-close:hover,
.lb-prev:hover,
.lb-next:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: scale(1.06);
}
.lb-close { top: 24px; right: 24px; font-size: 28px; }
.lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lb-prev:hover, .lb-next:hover { transform: translateY(-50%) scale(1.06); }
.lb-counter {
  position: absolute;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.05em;
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 12px;
  border-radius: 999px;
}

/* =====================================================
   REVEAL ANIMATION
===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 1024px) {
  .hero-title { font-size: 44px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .reels-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}

@media (max-width: 991px) {
  .main-nav,
  .header-right .social-row,
  .header-right .cta-btn { display: none; }
  .hamburger { display: flex; }

  /* ============ APP-LIKE MOBILE HEADER ============ */
  .site-header {
    padding: 6px 12px;
    background: #000f4b;
    -webkit-backdrop-filter: saturate(180%) blur(12px);
            backdrop-filter: saturate(180%) blur(12px);
  }
  .header-inner {
    min-height: 56px;
    gap: 12px;
  }
  .logo img { height: 38px; }

  /* Hamburger cleaner */
  .hamburger {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  .hamburger span { width: 20px; height: 2px; }
  .hamburger.active { background: var(--color-secondary); border-color: var(--color-secondary); }

  /* ============ SIDE DRAWER ============ */
  .md-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 6, 30, 0.55);
    -webkit-backdrop-filter: blur(4px);
            backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s;
    z-index: 198;
  }
  .md-backdrop.active {
    opacity: 1;
    visibility: visible;
  }

  .main-nav {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(82vw, 360px);
    background: linear-gradient(180deg, #001052 0%, #000a31 100%);
    padding: 0;
    z-index: 199;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -16px 0 48px rgba(0, 0, 0, 0.4);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .main-nav.open { transform: translateX(0); }

  /* Drawer header */
  .md-header {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.18);
  }
  .md-logo {
    height: 38px;
    width: auto;
  }
  .md-close {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
  }
  .md-close:hover, .md-close:active { background: rgba(255, 255, 255, 0.16); }
  .md-close .material-icons { font-size: 22px; }

  /* Menu list */
  .main-nav ul {
    flex-direction: column;
    gap: 4px !important;
    align-items: stretch !important;
    padding: 16px 12px !important;
    margin: 0 !important;
    flex: 1;
  }
  .main-nav ul li { width: 100%; }
  .main-nav a {
    display: flex !important;
    align-items: center;
    gap: 14px;
    padding: 14px 16px !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.92) !important;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: background 0.2s, transform 0.15s;
  }
  .main-nav a:hover,
  .main-nav a:active {
    background: rgba(20, 170, 219, 0.14) !important;
    color: #fff !important;
    transform: none !important;
  }
  .main-nav a.active {
    background: rgba(20, 170, 219, 0.18) !important;
    border-color: rgba(20, 170, 219, 0.3);
    color: var(--color-secondary) !important;
  }
  .nav-icon {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    font-size: 20px !important;
    color: var(--color-secondary) !important;
    flex-shrink: 0;
  }
  .main-nav .submenu-trigger {
    justify-content: flex-start;
    position: relative;
  }
  .main-nav .submenu-caret {
    margin-left: auto;
    font-size: 22px !important;
    color: rgba(255, 255, 255, 0.6) !important;
  }

  /* Drawer footer */
  .md-footer {
    display: flex !important;
    flex-direction: column;
    gap: 14px;
    padding: 16px 20px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.18);
  }
  .md-cta {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25d366;
    color: #fff !important;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 18px;
    border-radius: 12px;
    text-decoration: none !important;
    transition: transform 0.15s, background 0.2s;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
  }
  .md-cta:active { transform: scale(0.97); background: #1eb958; }
  .md-cta i { font-size: 20px; }
  .md-social {
    display: flex;
    justify-content: center;
    gap: 10px;
  }
  .md-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.8);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: background 0.2s;
  }
  .md-social a:active { background: rgba(255, 255, 255, 0.18); color: #fff; }

  /* Submenu inside drawer */
  .main-nav .submenu {
    position: static;
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    transform: none;
    box-shadow: none;
    padding: 0;
    margin-top: 4px;
    border-radius: 10px;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }
  .main-nav .submenu::before,
  .main-nav .submenu::after { display: none; }
  .has-submenu.open .submenu {
    max-height: 360px;
    padding: 6px;
  }
  .has-submenu.open .submenu-caret { transform: rotate(180deg); }
  .submenu-item {
    padding: 12px !important;
    gap: 12px !important;
  }
  .submenu-item .submenu-icon {
    width: 38px;
    height: 38px;
  }
  .submenu-item .submenu-icon .material-icons { font-size: 18px; }
  .main-nav .submenu-text strong { color: #fff !important; font-size: 14px; }
  .main-nav .submenu-text span { color: rgba(255, 255, 255, 0.7); font-size: 11px; }
  .main-nav .submenu-text em { color: var(--color-secondary); font-size: 10px; }

  /* ============ BOTTOM TAB BAR ============ */
  .mobile-tabbar {
    display: flex !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 68px;
    background: rgba(0, 15, 75, 0.95);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
            backdrop-filter: saturate(180%) blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 150;
    padding-bottom: env(safe-area-inset-bottom);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.3);
  }
  .mtab {
    flex: 1;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: rgba(255, 255, 255, 0.6) !important;
    text-decoration: none !important;
    font-size: 10px;
    font-weight: 600;
    padding: 8px 4px;
    transition: color 0.2s, transform 0.15s;
    position: relative;
  }
  .mtab .material-icons { font-size: 22px; }
  .mtab .mtab-label {
    font-size: 10px;
    letter-spacing: 0.02em;
  }
  .mtab:active { transform: scale(0.94); }
  .mtab.active {
    color: var(--color-secondary) !important;
  }
  .mtab.active::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 3px;
    background: var(--color-secondary);
    border-radius: 0 0 4px 4px;
  }

  /* Floating WhatsApp FAB in center */
  .mtab-fab {
    flex: 0 0 64px;
    margin-top: -28px;
  }
  .mtab-fab-inner {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #1eb958 100%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    box-shadow:
      0 10px 24px rgba(37, 211, 102, 0.5),
      0 0 0 6px rgba(0, 15, 75, 1);
    transition: transform 0.2s;
    animation: fabPulse 2.5s ease-in-out infinite;
  }
  .mtab-fab:active .mtab-fab-inner { transform: scale(0.92); }
  @keyframes fabPulse {
    0%, 100% { box-shadow: 0 10px 24px rgba(37, 211, 102, 0.5), 0 0 0 6px rgba(0, 15, 75, 1), 0 0 0 6px rgba(37, 211, 102, 0.5); }
    50%      { box-shadow: 0 10px 24px rgba(37, 211, 102, 0.5), 0 0 0 6px rgba(0, 15, 75, 1), 0 0 0 16px rgba(37, 211, 102, 0); }
  }

  /* Space at bottom of page so content isn't hidden behind tabbar */
  body { padding-bottom: 72px; }

  .hero { padding: 220px 24px 60px; min-height: 640px; }
  .hero-bg { background-image: url("https://cometamarketing.com.br/wp-content/uploads/2026/03/Design-sem-nome-2.jpg"); }
  .hero-overlay { background: linear-gradient(180deg, rgba(20,43,138,0) 20%, #000a31 34%); }

  .top-features-grid { grid-template-columns: 1fr; }
  .tf-item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .tf-item:last-child { border-bottom: none; }

  .about-grid,
  .mc2-grid,
  .comfort-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .benefits-grid { grid-template-columns: 1fr; gap: 20px; }
  .reels-grid { grid-template-columns: 1fr; gap: 16px; }

  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .products-header h2 { font-size: 32px; }
  .mc2-text h2 { font-size: 32px; }
  .mc2-stats { grid-template-columns: repeat(3, 1fr); padding: 16px; }
  .stat-value { font-size: 28px; }

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

  .mc2-image { min-height: 360px; }
  .comfort-image { min-height: 360px; }
}

@media (max-width: 640px) {
  .container { padding: 0 16px; }

  .hero-title { font-size: 36px; text-align: left; }
  .hero-sub { text-align: left; font-size: 15px; }
  .hero-buttons { justify-content: flex-start; }
  .hero-buttons .btn { font-size: 14px; padding: 12px 18px; }
  .hero { padding: 180px 20px 60px; min-height: 580px; }

  .about, .reels, .comfort, .contact-section, .benefits-grid-section {
    padding-left: 16px;
    padding-right: 16px;
  }
  .reels { padding-top: 24px; padding-bottom: 24px; }
  .about { padding-top: 48px; }
  .big-title { font-size: 26px; }
  .big-title-wrap { padding: 48px 16px 24px; }
  .about-text h2,
  .mc2-text h2,
  .comfort-text h2 { font-size: 26px; }

  /* Section eyebrows */
  .eyebrow { font-size: 12px; }

  /* Top features (3 dark cards) */
  .top-features { padding: 0; }
  .tf-item { padding: 22px 18px; }
  .tf-icon { font-size: 44px !important; }
  .tf-item h3 { font-size: 15px; }

  /* Benefits grid */
  .benefit-card { padding: 16px 0; }
  .benefit-icon { width: 64px; height: 64px; }
  .benefit-icon .material-icons { font-size: 38px; }
  .benefit-card h3 { font-size: 16px; }
  .benefit-card p { font-size: 14px; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }
  .gallery-section { padding-top: 48px; }
  .gallery-tabs { padding: 4px; gap: 4px; width: 100%; }
  .gallery-tab { padding: 8px 12px; font-size: 12px; flex: 1; justify-content: center; }
  .gallery-tab .count { font-size: 10px; padding: 1px 6px; }
  .gallery-title { font-size: 26px; }
  .gallery-header { padding: 0 16px; margin-bottom: 18px; }

  /* Products mobile */
  .products-section { padding: 60px 16px; }
  .products-grid { grid-template-columns: 1fr; gap: 16px; }
  .products-header h2 { font-size: 26px; }
  .products-sub { font-size: 14px; }
  .products-tabs { width: 100%; }
  .products-tab { padding: 10px 14px; flex: 1; justify-content: center; }
  .products-tab .pt-title { font-size: 13px; }
  .product-name { font-size: 20px; }
  .product-image { padding: 22px; }
  .products-footer { padding: 22px; gap: 14px; }
  .products-footer p { font-size: 14px; }

  /* MC2 mobile */
  .mc2 { padding: 56px 16px; }
  .mc2 .container { padding: 0; }
  .mc2-bg { background-attachment: scroll; }
  .mc2-text h2 { font-size: 26px; }
  .mc2-stats { grid-template-columns: 1fr; gap: 4px; padding: 12px; }
  .mc2-stats li + li::before { display: none; }
  .mc2-stats li {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 4px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    text-align: left;
  }
  .mc2-stats li:last-child { border-bottom: none; }
  .stat-value { font-size: 22px; }
  .stat-label { font-size: 10px; }
  .mc2-image { min-height: 280px; padding: 12px; }
  .mc2-image img { max-height: 280px; }
  .mc2-image-ring { display: none; }
  .mc2-actions { flex-direction: column; align-items: stretch; }
  .mc2-actions .btn { justify-content: center; }
  .mc2-grid { gap: 32px; }

  .comfort { padding: 48px 16px; }
  .comfort-image { padding-bottom: 60px; min-height: 280px; }
  .comfort-image > img { max-height: 320px; }
  .floating-card {
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    max-width: none;
    padding: 10px 14px;
    gap: 12px;
  }
  .fc-icon { width: 42px; height: 42px; }
  .fc-icon .material-icons { font-size: 20px; }

  /* CTA band */
  .cta-band { padding: 40px 20px; }
  .cta-band-inner { flex-direction: column-reverse; align-items: stretch; gap: 22px; }
  .cta-band-inner > div { text-align: center; }
  .cta-band h2 { font-size: 22px; }
  .cta-band p { font-size: 14px; }
  .cta-band-btn { width: 100%; justify-content: center; }

  /* Contact section + WhatsApp CTA */
  .contact-section { padding: 48px 16px; }
  .advantages-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .contact-left h2 { font-size: 20px; }
  .contact-desc { font-size: 14px; margin-bottom: 20px; }
  .contact-cta-wrap { padding: 28px 22px; gap: 14px; }
  .contact-cta-wrap h3 { font-size: 19px; }
  .ccta-desc { font-size: 13px; }
  .ccta-phone a { font-size: 16px; }
  .ccta-btn { font-size: 14px; padding: 14px 18px; }
  .adv-item .material-icons { font-size: 30px; }
  .adv-item h4 { font-size: 13px; }
  .adv-item p { font-size: 12px; }

  /* Footer */
  .site-footer { padding: 48px 20px 90px; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 28px; }
  .footer-brand,
  .footer-col { align-items: center; display: flex; flex-direction: column; }
  .footer-link { justify-content: center; text-align: left; }
  .footer-social { justify-content: center; }
  .footer-menu { text-align: center; }
  .footer-bottom { font-size: 12px; }
}

/* Extra small phones */
@media (max-width: 380px) {
  .hero-title { font-size: 30px; }
  .big-title { font-size: 22px; }
  .mc2-text h2,
  .about-text h2,
  .comfort-text h2,
  .products-header h2,
  .gallery-title { font-size: 22px; }
  .mtab .mtab-label { font-size: 9px; }
  .mtab .material-icons { font-size: 20px; }
  .mtab-fab-inner { width: 54px; height: 54px; font-size: 26px; }
}
