@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #ffffff;
  --bg-soft: #f5f9ff;
  --card: #ffffff;
  --cyan: #06b6d4;
  --cyan-soft: #67e8f9;
  --blue: #1d4ed8;
  --text: #0f172a;
  --muted: #475569;
  --line: rgba(6, 182, 212, 0.22);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, #f9fcff 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

.premium-ui {
  font-family: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}
.premium-ui main {
  padding-bottom: 1.4rem;
}
.premium-ui .page-hero {
  position: relative;
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 1rem;
  padding: 2rem 1.2rem;
  background: linear-gradient(125deg, #ffffff 0%, #eff8ff 100%);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}
.premium-ui .page-hero h1,
.premium-ui .section-title {
  display: inline-block;
  margin-top: 0;
  margin-bottom: 0.8rem;
  line-height: 1.15;
  color: #07294a;
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  font-weight: 800;
  letter-spacing: 0.2px;
}
.premium-ui .section-title {
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
}
.premium-ui .section-subtitle {
  font-size: 1.04rem;
  color: #334155;
}
.premium-ui .card h3 {
  color: #0b2b4f;
}
.premium-ui .about-card,
.premium-ui .contact-info,
.premium-ui .contact-form {
  border: 1px solid rgba(6, 182, 212, 0.22);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.07);
}
body::before, body::after {
  content: "";
  position: fixed;
  border-radius: 999px;
  z-index: -1;
  filter: blur(22px);
  opacity: 0.22;
}
body::before {
  width: 280px; height: 280px;
  background: #60a5fa;
  top: -80px; left: -80px;
  animation: floatBlob 14s ease-in-out infinite;
}
body::after {
  width: 260px; height: 260px;
  background: #22d3ee;
  bottom: -80px; right: -80px;
  animation: floatBlob 18s ease-in-out infinite reverse;
}

.container-page { width: min(1160px, 92%); margin: 0 auto; }
.glass {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 1rem;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}
.section { padding: 4rem 0; }
.section-title { font-size: clamp(1.5rem, 2.5vw, 2.3rem); margin-bottom: 1rem; }
.section-subtitle { color: var(--muted); max-width: 76ch; }

.navbar-wrap {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.28);
}
.navbar { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo { font-weight: 800; letter-spacing: 0.3px; color: var(--text); text-decoration: none; }
.logo span { color: var(--cyan); }
.logo-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.logo-image {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(6, 182, 212, 0.25);
  box-shadow: 0 8px 16px rgba(2, 8, 23, 0.16);
}
.logo-text {
  line-height: 1.05;
}
.menu { display: flex; align-items: center; gap: 1rem; }
.menu a, .dropdown-btn {
  color: var(--text); text-decoration: none; border: 0; background: transparent;
  font: inherit; cursor: pointer; padding: 0.55rem 0.7rem; border-radius: 0.6rem;
}
.menu a:hover, .dropdown-btn:hover, .dropdown-btn.active, .menu a.active { background: rgba(6, 182, 212, 0.13); }
.cta-btn {
  color: #ffffff; background: linear-gradient(90deg, var(--blue), var(--cyan));
  border: 0; padding: 0.65rem 1rem; border-radius: 0.8rem; font-weight: 700; text-decoration: none;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.26);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(37, 99, 235, 0.34); }

.dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: 120%; left: 0; min-width: 300px; padding: 0.5rem; display: none;
  background: #ffffff; border: 1px solid var(--line); border-radius: 0.8rem;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.14);
  max-height: min(62vh, 420px);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.dropdown.open .dropdown-menu { display: block; animation: rise 0.2s ease; }
.dropdown-menu a { display: block; }
.dropdown-menu::-webkit-scrollbar { width: 8px; }
.dropdown-menu::-webkit-scrollbar-track { background: #f1f5f9; border-radius: 999px; }
.dropdown-menu::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #38bdf8, #06b6d4);
  border-radius: 999px;
}
@keyframes rise { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.mobile-toggle { display: none; border: 1px solid var(--line); color: var(--text); background: #fff; border-radius: 0.6rem; padding: 0.4rem 0.65rem; }

.hero { padding: 4rem 0 3rem; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 1rem; }
.hero p { color: var(--muted); max-width: 80ch; }
.hero { position: relative; }
.hero::after {
  content: "";
  position: absolute;
  right: 0; top: 0;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.2), transparent 70%);
  pointer-events: none;
}
.home-hero-logo {
  height: 360px;
  object-fit: contain;
}

.cards { display: grid; gap: 1.1rem; grid-template-columns: repeat(1, minmax(0, 1fr)); }
@media (min-width: 700px) { .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .cards.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } .cards.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.card {
  border: 1px solid var(--line); border-radius: 1rem; overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
  transform: translateY(0); transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-8px) scale(1.01); box-shadow: 0 20px 34px rgba(15, 23, 42, 0.14); border-color: rgba(6, 182, 212, 0.5); }
.card img { width: 100%; height: 180px; object-fit: cover; background: #edf6ff; transition: transform 0.35s ease; }
.card:hover img { transform: scale(1.04); }
.card-content { padding: 1rem; display: flex; flex-direction: column; flex: 1; }
.card h3 { margin: 0 0 0.5rem; font-size: 1.05rem; }
.card p { color: var(--muted); margin: 0; font-size: 0.94rem; line-height: 1.5; }
.card .btn {
  margin-top: auto; display: inline-block; color: #ffffff; background: linear-gradient(90deg, var(--blue), var(--cyan));
  text-decoration: none; padding: 0.48rem 0.8rem; border-radius: 0.6rem; font-weight: 600;
  transition: transform 0.25s ease;
  align-self: flex-start;
}
.card .btn:hover { transform: translateY(-1px); }

.carousel { position: relative; overflow: hidden; border-radius: 1rem; border: 1px solid var(--line); }
.carousel-track { display: flex; transition: transform 0.45s ease; }
.carousel-slide { min-width: 100%; padding: 2rem; background: linear-gradient(120deg, #f8fbff, #edf8ff); }
.carousel-controls { display: flex; gap: 0.6rem; margin-top: 0.8rem; }
.carousel-controls button { border: 1px solid var(--line); background: transparent; color: var(--text); border-radius: 0.6rem; padding: 0.4rem 0.65rem; cursor: pointer; }

.footer {
  border-top: 1px solid rgba(6, 182, 212, 0.28);
  padding: 1.3rem 0;
  color: #dbeafe;
  background: linear-gradient(90deg, #0f172a, #1e293b);
  margin-top: 2rem;
}
.footer-inner {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-copy,
.footer-credit {
  margin: 0;
  color: #dbeafe;
  font-size: 0.9rem;
}
.footer-credit a {
  color: #67e8f9;
  text-decoration: none;
  font-weight: 700;
}
.footer-credit a:hover {
  text-decoration: underline;
}

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.show { opacity: 1; transform: translateY(0); }

.modal-backdrop {
  position: fixed; inset: 0; background: rgba(0, 8, 20, 0.68); display: none;
  align-items: center; justify-content: center; z-index: 70; padding: 1rem;
}
.modal-backdrop.open { display: flex; }
.modal {
  width: min(780px, 96%); background: #ffffff; border: 1px solid var(--line);
  border-radius: 1rem; padding: 1rem;
}
.modal-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.modal-close { border: 0; background: transparent; color: var(--text); font-size: 1.4rem; cursor: pointer; }
.modal-head [data-modal-title] {
  display: inline-block;
  margin: 0;
  padding: 0.22rem 0.62rem;
  border-radius: 0.6rem;
  font-weight: 800;
  color: #0b3a66;
  background: linear-gradient(90deg, rgba(29, 78, 216, 0.13), rgba(6, 182, 212, 0.18));
  border: 1px solid rgba(6, 182, 212, 0.28);
}
.modal-product {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 1rem;
  margin-top: 0.6rem;
}
.modal-product-image-wrap {
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  background: #f8fbff;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
}
.modal-product-image {
  width: 100%;
  height: 220px;
  border-radius: 0.6rem;
  object-fit: contain;
  background: #ffffff;
}
.modal-product-content h4 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  color: #0b3a66;
}
.modal-product-content p {
  margin: 0 0 0.8rem;
  color: var(--muted);
  line-height: 1.55;
}
.modal-product-content ul {
  margin: 0;
  padding-left: 1.1rem;
  list-style: disc;
}
.modal-product-content li {
  margin-bottom: 0.35rem;
  color: var(--muted);
  list-style: disc;
}

.page-hero { padding: 2.2rem 0; border-bottom: 1px solid var(--line); margin-bottom: 1.5rem; }

body[data-category-key] .page-hero {
  padding: 1.6rem 1.2rem;
  border: 1px solid rgba(6, 182, 212, 0.22);
  border-radius: 1rem;
  background: linear-gradient(120deg, #f7fcff 0%, #edf8ff 100%);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
  margin-top: 0.9rem;
}
body[data-category-key] .page-hero h1 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.9rem, 3.3vw, 2.7rem);
  font-weight: 800;
  letter-spacing: 0.2px;
  color: #0b3a66;
}
body[data-category-key] .page-hero .section-subtitle {
  margin: 0;
  max-width: 92ch;
  font-size: 1.02rem;
  line-height: 1.65;
  color: #334155;
}

.about-layout {
  display: grid;
  gap: 1.2rem;
  padding-top: 1rem;
}
.about-intro {
  padding: 1.3rem;
}
.about-intro p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 0.8rem;
}
.about-intro p:last-child {
  margin-bottom: 0;
}
.about-goals-list p {
  border-left: 3px solid rgba(6, 182, 212, 0.35);
  padding-left: 0.8rem;
}
.about-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.about-card {
  background: linear-gradient(180deg, #ffffff, #f7fcff);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.2rem;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}
.about-card h3 {
  display: inline-block;
  margin: 0 0 0.7rem;
  font-size: 1.28rem;
  font-weight: 800;
  color: #0b3a66;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(29, 78, 216, 0.14), rgba(6, 182, 212, 0.18));
  border: 1px solid rgba(6, 182, 212, 0.32);
}
.about-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

body[data-category-key] .card h3,
.products-page .products-catalog .card h3 {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 0.55rem;
  background: linear-gradient(90deg, rgba(29, 78, 216, 0.12), rgba(6, 182, 212, 0.16));
  border: 1px solid rgba(6, 182, 212, 0.25);
  color: #0b3a66;
}

.contact-layout {
  display: grid;
  gap: 1rem;
  align-items: start;
}
.contact-info,
.contact-form {
  padding: 1.3rem;
}
.contact-info p {
  margin: 0 0 0.65rem;
  color: var(--muted);
}
.whatsapp-btn,
.submit-btn {
  display: inline-block;
  margin-top: 0.6rem;
  border: 0;
  text-decoration: none;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  color: #fff;
  font-weight: 700;
  border-radius: 0.75rem;
  padding: 0.65rem 1rem;
  cursor: pointer;
}
.contact-form .section-title {
  margin-top: 0;
}
.form-field {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
}
.form-field label {
  font-weight: 600;
}
.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.45);
  border-radius: 0.65rem;
  padding: 0.7rem 0.8rem;
  font: inherit;
  background: #fff;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: 2px solid rgba(6, 182, 212, 0.4);
  border-color: rgba(6, 182, 212, 0.5);
}

.blog-page .page-hero {
  margin-bottom: 1rem;
}
.blog-feature {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.2fr 0.8fr;
  border: 1px solid rgba(6, 182, 212, 0.24);
  border-radius: 1rem;
  background: linear-gradient(120deg, #f8fcff, #eef9ff);
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.08);
  padding: 1.2rem;
}
.blog-kicker {
  margin: 0 0 0.5rem;
  display: inline-block;
  font-weight: 700;
  color: #075985;
  background: rgba(6, 182, 212, 0.14);
  border: 1px solid rgba(6, 182, 212, 0.35);
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
  font-size: 0.85rem;
}
.blog-feature h2 {
  margin: 0 0 0.6rem;
  color: #082f49;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.2;
}
.blog-feature p {
  margin: 0 0 0.8rem;
  color: #334155;
}
.blog-feature .btn {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  padding: 0.6rem 0.95rem;
  border-radius: 0.7rem;
  font-weight: 700;
}
.blog-feature-art {
  border: 1px solid rgba(6, 182, 212, 0.22);
  border-radius: 0.85rem;
  background: #fff;
  display: grid;
  place-items: center;
  min-height: 220px;
  overflow: hidden;
}
.blog-feature-art img {
  width: 75%;
  max-width: 220px;
}
.blog-list-head {
  padding-bottom: 1.2rem;
}
.blog-list-head .section-title {
  margin-bottom: 0.4rem;
}
.blog-cards {
  padding-top: 0;
}
.blog-card .card-content {
  padding-top: 0.9rem;
}
.blog-tag {
  margin: 0 0 0.55rem;
  color: #0e7490;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-image-marquee {
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  overflow: hidden;
  background: linear-gradient(90deg, #f8fcff, #eef8ff);
}
.product-image-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  padding: 1rem;
  animation: productsFlow 26s linear infinite;
}
.product-image-item {
  min-width: 180px;
  background: #fff;
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 0.85rem;
  padding: 0.6rem;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
}
.product-image-item img {
  width: 100%;
  height: 95px;
  border-radius: 0.6rem;
  object-fit: cover;
}
.product-image-item span {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #0b3a66;
}

.home-highlight-section .section-subtitle {
  max-width: 95ch;
}
.home-highlight-title {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: clamp(1.45rem, 2.2vw, 1.95rem);
  font-weight: 800;
  color: #0a365f;
  letter-spacing: 0.2px;
  padding: 0.2rem 0.8rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(29, 78, 216, 0.14), rgba(6, 182, 212, 0.2));
  border: 1px solid rgba(6, 182, 212, 0.28);
}
.home-read-more {
  display: inline-block;
  margin-top: 1rem;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  font-weight: 700;
  border-radius: 0.7rem;
  padding: 0.62rem 1rem;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.home-read-more:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.32);
}

.products-page .products-catalog .card {
  border: 1px solid rgba(6, 182, 212, 0.2);
  background: linear-gradient(135deg, #ffffff, #f4fbff);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}
.products-page .products-catalog .card-content {
  padding: 1rem 1rem 0.85rem;
}
.products-page .products-catalog .card h3 {
  font-size: 1.14rem;
  font-weight: 750;
  color: #0b3a66;
  line-height: 1.35;
  margin-bottom: 0.9rem;
}
.products-page .products-catalog .card .btn {
  border-radius: 999px;
  padding: 0.5rem 0.95rem;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(2px);
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.site-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.site-loader-wrap {
  position: relative;
  width: 122px;
  height: 122px;
  display: grid;
  place-items: center;
}
.site-loader-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #1d4ed8, #06b6d4, #67e8f9, #1d4ed8);
  animation: spinLoader 1.05s linear infinite;
}
.site-loader-ring::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: #ffffff;
}
.site-loader-logo {
  position: relative;
  z-index: 2;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
}

.marquee-wrap {
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: linear-gradient(90deg, #eff8ff, #f8fdff);
  margin: 1rem 0 2rem;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeX 26s linear infinite;
  gap: 2rem;
  padding: 0.7rem 0;
}
.marquee-item {
  white-space: nowrap;
  color: #0f172a;
  font-weight: 600;
  padding-left: 0.8rem;
}

@keyframes marqueeX {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes floatBlob {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(22px, -24px); }
}
@keyframes spinLoader {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes productsFlow {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 920px) {
  .mobile-toggle { display: inline-block; }
  .menu {
    position: fixed; inset: 76px 0 auto 0; flex-direction: column; align-items: stretch;
    background: rgba(255, 255, 255, 0.98); padding: 1rem; transform: translateY(-120%);
    transition: transform 0.28s ease; border-bottom: 1px solid var(--line);
  }
  .menu.open { transform: translateY(0); }
  .dropdown-menu { position: static; min-width: 100%; margin-top: 0.45rem; }
  .modal-product {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .blog-feature {
    grid-template-columns: 1fr;
  }
  .home-hero-logo {
    height: 260px;
  }
}

@media (min-width: 840px) {
  .about-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .contact-layout {
    grid-template-columns: 1fr 1.2fr;
  }
}
