@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

:root {
  --font-pj: "Plus Jakarta Sans", sans-serif;
  --brand: #20519A;
  --brand-dark: #183d78;
  --brand-light: #2a65c0;
  --brand-50: #eef3fb;
  --brand-100: #d4e2f5;
  --brand-200: #aac5eb;
  --sky: #1A89C8;
  --sky-light: #3ea5e0;
  --sky-50: #e8f4fc;
  --sky-100: #c6e5f7;
  --body-text: #5B5B5B;
  --heading: #1a1a2e;
  --muted: #8a8a9a;
  --border: #e2e8f2;
  --bg: #ffffff;
  --bg-soft: #f6f8fc;
  --bg-dark: #0e1f40;
  --grad-brand: linear-gradient(135deg, #20519A, #1A89C8);
  --r-sm: .5rem;
  --r-md: .75rem;
  --r-lg: 1rem;
  --r-xl: 1.25rem;
  --r-2xl: 1.5rem;
  --r-full: 9999px;
  --sh-sm: 0 1px 4px rgba(32, 81, 154, .08);
  --sh-md: 0 4px 16px rgba(32, 81, 154, .12);
  --sh-lg: 0 12px 40px rgba(32, 81, 154, .16);
  --sh-xl: 0 24px 64px rgba(32, 81, 154, .20);
}

.ns-container {
  max-width: 1200px;
  margin: 0 auto;
}

.img-glow {
  position: absolute;
  inset: -1.5rem;
  background: linear-gradient(135deg, rgba(32, 81, 154, .12), rgba(26, 137, 200, .1));
  border-radius: 2rem;
  filter: blur(24px);
  z-index: 0;
}

.product {
  font-family: var(--font-pj);
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  padding: 0 clamp(1rem, 5vw, 2.5rem);
}

.product ul {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  margin: 1.5rem 0 2rem;
  list-style: disc;
  padding-left: 25px;
}

.product ul li {
  font-size: .9375rem;
}

.product ul li::marker {
  color: #1A89C8;
  font-size: 18px;
  line-height: 11px;
}

.product-hero {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 5vw, 2.5rem) clamp(3rem, 6vw, 5rem);
  background: #dfeaf6;
}

/* WRAP + GRID */
.product-hero__wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.product-hero__grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

.product-hero__left,
.product-hero__right {
  flex: 1;
}

.product-hero__left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-hero__full {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
  align-items: center;
}

/* PILL */
.product-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1.125rem;
  background: #fff;
  border: 1px solid var(--brand-100);
  border-radius: var(--r-full);
  font-size: .8125rem;
  font-weight: 600;
  color: var(--brand);
  width: fit-content;
  box-shadow: var(--sh-sm);
}

.product-hero__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sky);
  animation: pulseAnim 2s ease-in-out infinite;
}

/* TITLE */
.product-hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -.04em;
  color: var(--heading);
}

.product-hero__highlight {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

}

/* DESCRIPTION */
.product-hero__description {
  font-size: clamp(.9375rem, 2vw, 1.0625rem);
  line-height: 1.7;
  font-weight: 300;
  color: var(--body-text);
  max-width: 32rem;
}

.product-hero__full .product-hero__description {
  max-width: 58rem;
}

.product-hero__description h4 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--brand);
}

.product-hero__description strong {
  color: #1981c1;
  font-weight: 600;
}

/* TAGS */
.product-hero__tags .field--name-field-product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.product-hero__tags .field--name-field-product-tags .field__item {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid #d1d5db;
  background: #f8fafc;
  color: #5B5B5B;
}

.product-hero__tags .field--name-field-product-tags .field__item:first-child {
  border-color: #1A89C8;
  background: #EBF2FA;
  color: #20519A;
}

/* BUTTONS */
.product-hero__actions .field--name-field-ctas {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.product-hero__actions .field--name-field-ctas .field__item a {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 0 1.75rem;
  height: 3.25rem;
  border-radius: var(--r-full);
  font-size: .9375rem;
  font-weight: 600;
  transition: all .2s;
  white-space: nowrap;
}

.product-hero__actions .field--name-field-ctas .field__item:nth-child(1) a {
  background-color: var(--brand);
  color: #fff;
  box-shadow: 0 6px 20px rgba(32, 81, 154, .3);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-size: 20px;
  background-position: 86% center;
  padding-right: 50px;
}

.product-hero__actions .field--name-field-ctas .field__item:nth-child(1) a:hover {
  background-color: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(32, 81, 154, .38);
}

.product-hero__actions .field--name-field-ctas .field__item:nth-child(2) a {
  background: transparent;
  color: var(--brand);
  border: 1.5px solid var(--brand-200);
}

.product-hero__actions .field--name-field-ctas .field__item:nth-child(2) a:hover {
  border-color: var(--brand);
}

/* IMAGE */
.product-hero__image-wrapper {
  position: relative;
  padding: 1.5rem 1.5rem 2.5rem;
}

.product-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(32, 81, 154, 0.15),
      rgba(26, 137, 200, 0.1));
  border-radius: 2rem;
  filter: blur(28px);
  z-index: 1;
}

.product-hero__image {
  width: 100%;
  height: auto;
  object-fit: cover;
  position: relative;
}

/* BADGES */
.badge {
  position: absolute;
  background: #fff;
  border-radius: var(--r-xl);
  padding: .875rem 1.125rem;
  box-shadow: var(--sh-lg);
  border: 1px solid var(--border);
  text-align: left;
  z-index: 2;
}

.badge-top {
  top: -1rem;
  right: -1rem;
  animation: floatA 3.5s ease-in-out infinite .5s;
}

.badge-bottom {
  bottom: -1.25rem;
  left: -1.25rem;
  animation: floatA 3s ease-in-out infinite;
}

.badge-eyebrow {
  color: #20519A;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 5px;
}

.badge-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--heading);
}

.badge-title.sky {
  color: var(--sky);
}

.badge-text {
  font-size: .6875rem;
  color: var(--muted);
  font-weight: 500;
  margin-top: 10px;
}

@keyframes pulseAnim {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .5;
    transform: scale(1.4);
  }
}

@keyframes floatA {

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

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

/* Para highlighted */

.highlighted {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1rem, 5vw, 2.5rem) clamp(3.5rem, 8vw, 6rem);
  background-color: var(--bg-soft);
}

.highlighted__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.highlighted__left {
  position: relative;
  max-width: 26rem;
  margin: 0 auto;
}

.highlighted__image {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  box-shadow: var(--sh-xl);
  overflow: hidden;
  z-index: 1;
}

.highlighted__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .375rem 1rem;
  background: var(--brand-50);
  border: 1px solid var(--sky-100);
  border-radius: var(--r-full);
  font-size: .8125rem;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  background: var(--sky-50);
  color: var(--sky);
}

.highlighted__title {
  font-size: clamp(1.75rem, 4vw, 2.875rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--heading);
  margin-bottom: 1rem;
}

.highlighted__style-title {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlighted__body {
  font-size: clamp(.9375rem, 2vw, 1.0625rem);
  line-height: 1.7;
  color: var(--body-text);
  max-width: 44rem;
}

.highlighted__link a {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 0 1.75rem;
  height: 3.25rem;
  border-radius: var(--r-full);
  font-size: .9375rem;
  font-weight: 600;
  transition: all .2s;
  white-space: nowrap;
  background-color: var(--brand);
  color: #fff;
  box-shadow: 0 6px 20px rgba(32, 81, 154, .3);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-size: 20px;
  background-position: 86% center;
  padding-right: 50px;
}


@media screen and (max-width: 1023px) {
  .product-hero__grid {
    flex-direction: column;
  }

  .product-hero__left {
    align-items: center;
    text-align: center;
  }
}

@media screen and (max-width: 699px) {
  .product-hero__description h4 {
    font-size: 18px;
  }

  .product-hero__actions .field--name-field-ctas {
    flex-direction: column;
  }

  .product-hero__right {
    display: none;
  }

  .badge {
    display: none;
  }

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