:root {
  --ink: #102b4f;
  --muted: #5c7189;
  --paper: #f3f9ff;
  --surface: #ffffff;
  --line: #d8e9f7;
  --blue-dark: #004c97;
  --blue-mid: #2f9dd3;
  --blue-light: #dff5fb;
  --gold: #f3bd2f;
  --gold-dark: #d99a08;
  --teal: #2f9dd3;
  --teal-dark: #004c97;
  --coral: #f3bd2f;
  --green: #74c7d8;
  --yellow: #f3bd2f;
  --cream: #eaf8ff;
  --shadow: 0 18px 46px rgba(16, 43, 79, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

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

button,
input,
select {
  font: inherit;
}

.top-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px clamp(18px, 5vw, 72px);
  color: #fff;
  background:
    linear-gradient(90deg, #075e54 0%, #128c7e 46%, #25d366 100%);
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(7, 94, 84, 0.22);
}

.top-strip-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-strip-content span:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  align-items: center;
}

.top-whatsapp-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  color: #075e54;
  background: #fff;
}

.top-whatsapp-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.top-community-button {
  position: relative;
  flex: 0 0 auto;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
  padding: 0 16px;
  color: #075e54;
  background: #fff;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
  animation: communityPulse 2.8s ease-in-out infinite;
}

.top-community-button::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 227, 159, 0.75), transparent);
  animation: communityShine 3.4s ease-in-out infinite;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(243, 249, 255, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
}

.brand-logo {
  width: 118px;
  height: 66px;
  border-radius: 8px;
  object-fit: contain;
  object-position: center;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 76, 151, 0.12);
}

.brand span {
  display: grid;
  gap: 2px;
}

.brand strong {
  line-height: 1;
}

.brand small {
  color: var(--blue-mid);
  font-size: 0.76rem;
  line-height: 1.15;
  font-weight: 900;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 800;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--teal);
}

.nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  padding: 0 16px;
  color: #fff;
  background: var(--blue-dark);
}

.nav .nav-cta:hover,
.nav .nav-cta:focus-visible {
  color: #fff;
  background: var(--teal-dark);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: var(--blue-light);
}

.menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100vh - 116px);
  display: grid;
  align-items: center;
  padding: clamp(48px, 7vw, 88px) clamp(18px, 5vw, 72px);
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(243, 189, 47, 0.3), transparent 34%),
    linear-gradient(135deg, #002f62 0%, #004c97 46%, #2f9dd3 100%);
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: -7% 0;
  width: 100%;
  height: 114%;
  object-fit: cover;
  object-position: center right;
  transform: translate3d(0, var(--hero-parallax, 0px), 0) scale(1.04);
  transition: transform 120ms linear;
  will-change: transform;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 30, 67, 0.94) 0%, rgba(0, 76, 151, 0.84) 39%, rgba(0, 76, 151, 0.5) 68%, rgba(0, 76, 151, 0.28) 100%),
    linear-gradient(0deg, rgba(0, 30, 67, 0.74) 0%, rgba(0, 30, 67, 0.18) 54%, rgba(0, 30, 67, 0.42) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(2.65rem, 7vw, 6.5rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.58;
}

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

.hero-actions {
  margin-top: 28px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 20px;
  font-weight: 900;
  cursor: pointer;
}

.button.primary {
  color: var(--blue-dark);
  background: var(--gold);
  box-shadow: 0 12px 24px rgba(243, 189, 47, 0.3);
}

.button.primary.whatsapp-hero {
  color: #fff;
  background: linear-gradient(135deg, #21b66f 0%, #078b58 100%);
  box-shadow: 0 16px 34px rgba(9, 139, 88, 0.34);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--gold-dark);
}

.button.primary.whatsapp-hero:hover,
.button.primary.whatsapp-hero:focus-visible {
  background: linear-gradient(135deg, #12a865 0%, #06784d 100%);
}

.button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(10px);
}

.quick-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.quick-bar div {
  min-height: 124px;
  display: grid;
  align-content: center;
  padding: 24px clamp(18px, 3vw, 32px);
  background: #fff;
}

.quick-bar strong {
  margin-bottom: 6px;
  color: var(--blue-dark);
  font-size: clamp(1.7rem, 4vw, 2.7rem);
  line-height: 1;
}

.quick-bar span,
.category-card p,
.step p {
  color: var(--muted);
  line-height: 1.6;
}

.section,
.contact {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-heading a {
  flex: 0 0 auto;
  color: var(--blue-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.section-heading.center {
  display: block;
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.categories-heading {
  display: block;
}

.categories-heading h2 {
  max-width: 900px;
}

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

.category-card {
  min-height: 300px;
  border-radius: 8px;
  padding: 26px;
  color: #192427;
  box-shadow: var(--shadow);
}

.category-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 62px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  font-weight: 950;
}

.category-card h3 {
  margin-bottom: 10px;
  font-size: 1.24rem;
}

.category-card.yellow {
  background: #ffe39f;
}

.category-card.teal {
  background: #dff5fb;
}

.category-card.coral {
  background: #c9eafa;
}

.category-card.green {
  background: #eaf8ff;
}

.category-card.blue {
  background: #b7ddf4;
}

.featured-products {
  background:
    radial-gradient(circle at 12% 18%, rgba(243, 189, 47, 0.18), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f3f9ff 100%);
}

.featured-products-heading {
  max-width: 920px;
}

.featured-products-heading h2 {
  max-width: none;
  margin-bottom: 14px;
}

.featured-products-heading p:last-child {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.65;
}

.featured-products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.featured-product-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(0, 44, 92, 0.12);
}

.featured-product-media {
  display: grid;
  place-items: center;
  height: clamp(300px, 30vw, 430px);
  margin: 0;
  padding: clamp(10px, 1.8vw, 18px);
  background:
    linear-gradient(180deg, #fff 0%, #f3f9ff 100%);
}

.featured-product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 12px 22px rgba(0, 44, 92, 0.12));
}

.featured-product-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 3vw, 30px);
}

.featured-product-badge {
  width: fit-content;
  margin-bottom: 14px;
  border-radius: 8px;
  padding: 8px 12px;
  color: var(--blue-dark);
  background: var(--gold);
  font-weight: 950;
}

.featured-product-content h3 {
  margin-bottom: 12px;
  color: var(--blue-dark);
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  line-height: 1.12;
}

.featured-product-content p {
  margin-bottom: 24px;
  color: var(--muted);
  line-height: 1.62;
}

.product-catalog-button {
  width: fit-content;
  margin-top: auto;
  color: #fff;
  background: var(--blue-dark);
}

.product-catalog-button:hover,
.product-catalog-button:focus-visible {
  background: var(--blue-medium);
}

.step {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(55, 39, 20, 0.08);
}

.about {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.72fr);
  gap: 32px;
  align-items: center;
  background: #fff;
}

.about-copy h2 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.about-copy p,
.about-panel p,
.mission-card p,
.mission-card li {
  color: var(--muted);
  line-height: 1.65;
}

.about-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 36px);
  background:
    linear-gradient(135deg, rgba(223, 245, 251, 0.96), rgba(255, 227, 159, 0.58));
  box-shadow: var(--shadow);
}

.about-panel strong {
  display: block;
  margin-bottom: 14px;
  color: var(--blue-dark);
  font-size: clamp(1.4rem, 3vw, 2.25rem);
  line-height: 1.1;
}

.about-facts {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.about-facts span {
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 76, 151, 0.12);
  font-weight: 900;
}

.mission {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 18% 18%, rgba(47, 157, 211, 0.45), transparent 30%),
    radial-gradient(circle at 84% 14%, rgba(243, 189, 47, 0.24), transparent 28%),
    linear-gradient(135deg, #00376f 0%, #004c97 48%, #0a2d5f 100%);
}

.mission::before,
.mission::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.mission::before {
  width: 220px;
  height: 220px;
  right: -80px;
  top: 64px;
  border: 28px solid rgba(243, 189, 47, 0.2);
}

.mission::after {
  width: 140px;
  height: 140px;
  left: -46px;
  bottom: 50px;
  background: rgba(223, 245, 251, 0.14);
}

.mission .section-heading {
  position: relative;
  z-index: 1;
}

.mission .eyebrow {
  color: #ffe39f;
}

.mission .section-heading h2 {
  color: #fff;
}

.mission-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.mission-card {
  position: relative;
  min-height: 380px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 54px rgba(0, 31, 72, 0.26);
  animation: missionRise 680ms ease both;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.mission-card:nth-child(2) {
  animation-delay: 90ms;
}

.mission-card:nth-child(3) {
  animation-delay: 180ms;
}

.mission-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(90deg, var(--gold), #ffe39f);
}

.mission-card:hover {
  transform: translateY(-8px);
  border-color: rgba(243, 189, 47, 0.75);
  box-shadow: 0 32px 64px rgba(0, 31, 72, 0.34);
}

.mission-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 22px;
  border-radius: 8px;
  color: var(--blue-dark);
  background:
    linear-gradient(135deg, #ffe39f 0%, var(--gold) 100%);
  box-shadow: 0 14px 24px rgba(243, 189, 47, 0.28);
}

.mission-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mission-card span {
  display: inline-flex;
  margin-bottom: 18px;
  border-radius: 8px;
  padding: 8px 11px;
  color: var(--blue-dark);
  background: var(--blue-light);
  font-weight: 950;
}

.mission-card p,
.mission-card li {
  color: #52677e;
}

.mission-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.mission-card li::marker {
  color: var(--gold-dark);
}

@keyframes missionRise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mission-card {
    animation: none;
    transition: none;
  }

  .mission-card:hover {
    transform: none;
  }

  .top-community-button,
  .top-community-button::after {
    animation: none;
  }
}

@keyframes communityPulse {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-1px);
  }
}

@keyframes communityShine {
  0%,
  46% {
    transform: translateX(-120%) skewX(-18deg);
  }

  76%,
  100% {
    transform: translateX(130%) skewX(-18deg);
  }
}

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

.step {
  min-height: 250px;
  padding: 26px;
}

.step span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 42px;
  border-radius: 8px;
  color: #fff;
  background: var(--blue-dark);
  font-weight: 950;
}

.step h3 {
  margin-bottom: 10px;
}

.instagram-section {
  background:
    radial-gradient(circle at 12% 16%, rgba(243, 189, 47, 0.22), transparent 30%),
    linear-gradient(180deg, #f3f9ff 0%, #dff5fb 100%);
}

.instagram-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 5vw, 48px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.instagram-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: var(--blue-dark);
  background: linear-gradient(135deg, #ffe39f 0%, var(--gold) 100%);
  box-shadow: 0 14px 24px rgba(243, 189, 47, 0.28);
}

.instagram-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.instagram-copy h2 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.instagram-copy p {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.65;
}

.instagram-profile {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
}

.instagram-profile strong {
  color: var(--blue-dark);
  font-size: 1.08rem;
}

.instagram-follow {
  color: var(--blue-dark);
  background: var(--gold);
  box-shadow: 0 12px 24px rgba(243, 189, 47, 0.26);
}

.instagram-follow:hover,
.instagram-follow:focus-visible {
  background: var(--gold-dark);
}

.instagram-posts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.post-preview {
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  border-radius: 8px;
  padding: 18px;
  color: #fff;
  background:
    linear-gradient(0deg, rgba(0, 44, 92, 0.92), rgba(0, 76, 151, 0.12)),
    linear-gradient(135deg, var(--blue-mid), var(--blue-dark));
  box-shadow: 0 18px 38px rgba(16, 43, 79, 0.18);
}

.post-preview::before {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  right: -34px;
  top: -30px;
  border-radius: 50%;
  background: rgba(243, 189, 47, 0.34);
}

.post-preview:nth-child(2) {
  background:
    linear-gradient(0deg, rgba(0, 44, 92, 0.9), rgba(47, 157, 211, 0.08)),
    linear-gradient(135deg, #5fc3dc, #004c97);
}

.post-preview:nth-child(3) {
  background:
    linear-gradient(0deg, rgba(0, 44, 92, 0.9), rgba(243, 189, 47, 0.08)),
    linear-gradient(135deg, #f3bd2f, #004c97);
}

.post-preview span {
  position: relative;
  margin-bottom: 10px;
  color: #ffe39f;
  font-weight: 950;
}

.post-preview p {
  position: relative;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.45;
}

.contact {
  display: block;
  background: linear-gradient(135deg, #dff5fb 0%, #ffe39f 100%);
}

.visit-card {
  overflow: hidden;
  max-width: 1120px;
  margin: 0 auto;
  border: 1px solid rgba(0, 76, 151, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.visit-heading {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 24px 24px 6px;
}

.visit-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: var(--gold);
  box-shadow: 0 12px 22px rgba(243, 189, 47, 0.24);
  font-size: 1.25rem;
}

.visit-heading h3 {
  margin-bottom: 0;
  color: var(--blue-dark);
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  line-height: 1.08;
}

.visit-info {
  display: grid;
  gap: 10px;
  padding: 18px 24px 22px;
}

.visit-info span {
  display: block;
  border-radius: 8px;
  padding: 12px 14px;
  color: #40566f;
  background: #f3f9ff;
  line-height: 1.45;
}

.visit-info strong {
  margin-right: 6px;
}

.visit-map {
  display: block;
  width: calc(100% - 32px);
  height: 270px;
  margin: 0 16px 16px;
  border: 0;
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(0, 76, 151, 0.14);
}

label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

input,
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--ink);
  background: #fff;
}

input:focus,
select:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(19, 132, 125, 0.16);
}

.community {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 12%, rgba(37, 211, 102, 0.18), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(243, 189, 47, 0.22), transparent 28%),
    linear-gradient(180deg, #f3f9ff 0%, #dff5fb 100%);
}

.community::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -92px;
  bottom: -92px;
  border: 30px solid rgba(0, 76, 151, 0.12);
  border-radius: 50%;
}

.community-heading {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto 36px;
  text-align: center;
}

.community-heading h2 {
  margin-bottom: 16px;
  font-size: clamp(2.15rem, 5vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.community-heading p:last-child {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.65;
}

.community-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 1.28fr) minmax(280px, 0.72fr);
  gap: clamp(20px, 4vw, 34px);
  align-items: stretch;
}

.community-whatsapp-card,
.community-email-card {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.community-whatsapp-card {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.26);
  padding: clamp(26px, 5vw, 46px);
  color: #fff;
  background:
    radial-gradient(circle at 85% 12%, rgba(255, 227, 159, 0.28), transparent 30%),
    linear-gradient(135deg, #075e54 0%, #128c7e 48%, #25d366 100%);
}

.community-whatsapp-card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -70px;
  bottom: -72px;
  border: 26px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.community-whatsapp-icon,
.community-email-icon {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  margin-bottom: 22px;
  border-radius: 8px;
}

.community-whatsapp-icon {
  color: #075e54;
  background: #fff;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.16);
}

.community-email-icon {
  color: var(--blue-dark);
  background: linear-gradient(135deg, #ffe39f 0%, var(--gold) 100%);
}

.community-whatsapp-icon svg,
.community-email-icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.community-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  border-radius: 8px;
  padding: 8px 12px;
  color: #075e54;
  background: rgba(255, 255, 255, 0.88);
  font-weight: 950;
}

.community-whatsapp-card h3 {
  max-width: 700px;
  margin-bottom: 16px;
  font-size: clamp(2rem, 4.6vw, 4rem);
  line-height: 1.03;
}

.community-whatsapp-card p {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
  font-weight: 800;
}

.community-whatsapp-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.community-whatsapp-list li {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  font-weight: 850;
}

.community-whatsapp-button {
  position: relative;
  z-index: 1;
  width: fit-content;
  min-height: 56px;
  margin-top: auto;
  color: #075e54;
  background: #fff;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.community-whatsapp-button:hover,
.community-whatsapp-button:focus-visible {
  background: #ffe39f;
}

.community-email-card {
  align-self: stretch;
  border: 1px solid var(--line);
  padding: clamp(22px, 4vw, 32px);
  background: rgba(255, 255, 255, 0.96);
}

.community-email-card h3 {
  margin-bottom: 12px;
  color: var(--blue-dark);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.08;
}

.community-email-card p {
  color: var(--muted);
  line-height: 1.6;
}

.community-form {
  display: grid;
  gap: 16px;
  margin-top: 22px;
  color: var(--ink);
}

.community-form .button {
  width: 100%;
}

.community-confirmation {
  margin: 2px 0 0;
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--blue-dark);
  background: var(--blue-light);
  font-weight: 800;
  line-height: 1.55;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 22px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: #fff;
  align-items: center;
  background: #00376f;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
}

.footer-brand img {
  width: 88px;
  height: 58px;
  border-radius: 8px;
  object-fit: cover;
}

.footer-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  max-width: 880px;
}

.footer-info span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

@media (max-width: 1020px) {
  .quick-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-grid,
  .featured-products-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 840px) {
  .top-strip {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    text-align: left;
  }

  .top-strip-content {
    align-items: flex-start;
  }

  .top-community-button {
    width: 100%;
  }

  .menu-button {
    display: block;
  }

  .nav {
    position: absolute;
    top: calc(100% - 1px);
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 16px 18px;
    border-bottom: 1px solid var(--line);
  }

  .nav a:last-child {
    border-bottom: 0;
  }

  .nav-cta {
    border-radius: 0 0 8px 8px;
  }

  .hero {
    min-height: 760px;
    align-items: end;
    background:
      radial-gradient(circle at 64% 16%, rgba(243, 189, 47, 0.26), transparent 34%),
      linear-gradient(135deg, #002f62 0%, #004c97 58%, #2f9dd3 100%);
  }

  .hero-image {
    object-position: center top;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(7, 22, 24, 0.94) 0%, rgba(7, 22, 24, 0.84) 48%, rgba(7, 22, 24, 0.38) 100%);
  }

  .section-heading,
  .about,
  .instagram-card,
  .community-shell,
  .contact {
    grid-template-columns: 1fr;
  }

  .mission-grid,
  .instagram-posts,
  .community-whatsapp-list {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: grid;
    align-items: start;
  }
}

@media (max-width: 620px) {
  .brand span:last-child {
    max-width: 190px;
    line-height: 1.1;
  }

  .brand-logo {
    width: 92px;
    height: 52px;
  }

  .brand small {
    font-size: 0.68rem;
  }

  .footer {
    align-items: stretch;
  }

  .footer-brand,
  .footer-info {
    width: 100%;
  }

  .footer-info {
    justify-content: flex-start;
  }

  .footer-info span {
    width: 100%;
  }

  .hero {
    min-height: 720px;
    padding-top: 38px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .instagram-profile .button {
    width: 100%;
  }

  .community-form .button {
    min-height: 54px;
  }

  .community-whatsapp-button {
    width: 100%;
  }

  .quick-bar,
  .category-grid,
  .featured-products-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .featured-product-media {
    height: clamp(260px, 72vw, 360px);
  }

  .product-catalog-button {
    width: 100%;
  }

  .category-card {
    min-height: 238px;
  }

  .category-card span {
    margin-bottom: 34px;
  }
}
