/* ============================================
   FLEXIUMPRINT - Landing Page Styles
   ============================================

   Estructura del CSS:
   1. Variables y Reset
   2. Utilidades y Tipografía
   3. Header / Navegación
   4. Hero Section
   5. Sección Productos
   6. Sección Ventajas
   7. Sección CTA Final
   8. Footer
   9. Animaciones
   10. Media Queries (Responsive)

   Paleta de colores:
   - Azul cyan:  #2BB8E8
   - Púrpura:    #8B4ECB
   - Rosa:       #F36C9E
   - Fondo:      #FAFAFA / #FFFFFF
   ============================================ */


/* ============================================
   1. VARIABLES Y RESET
   ============================================ */
:root {
  /* Colores principales */
  --color-primary: #2BB8E8;
  --color-secondary: #8B4ECB;
  --color-accent: #F36C9E;

  /* Colores de fondo */
  --color-bg: #FAFAFA;
  --color-bg-white: #FFFFFF;
  --color-bg-subtle: #F0F4F8;

  /* Colores de texto */
  --color-text: #1A1A2E;
  --color-text-secondary: #555770;
  --color-text-muted: #8890A4;

  /* Gradientes */
  --gradient-primary: linear-gradient(135deg, #2BB8E8, #8B4ECB);
  --gradient-accent: linear-gradient(135deg, #8B4ECB, #F36C9E);
  --gradient-full: linear-gradient(135deg, #2BB8E8, #8B4ECB, #F36C9E);
  --gradient-hero-bg: linear-gradient(160deg, #f0f8ff 0%, #f5f0ff 40%, #fff0f5 100%);

  /* Sombras */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.04), 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.06), 0 6px 12px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.08), 0 10px 20px rgba(0, 0, 0, 0.04);
  --shadow-card: 0 4px 20px rgba(43, 184, 232, 0.08);
  --shadow-card-hover: 0 12px 40px rgba(43, 184, 232, 0.15);

  /* Tipografía */
  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Espaciado */
  --section-padding: 6rem 0;
  --container-max: 1200px;
  --container-padding: 0 1.5rem;

  /* Bordes */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 999px;

  /* Transiciones */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* Reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

address {
  font-style: normal;
}


/* ============================================
   2. UTILIDADES Y TIPOGRAFÍA
   ============================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}

/* Encabezado de sección reutilizable */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}


/* ============================================
   BOTONES
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gradient-primary);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(43, 184, 232, 0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(43, 184, 232, 0.4);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--outline {
  background: transparent;
  color: var(--color-text);
  border: 2px solid rgba(43, 184, 232, 0.3);
  backdrop-filter: blur(4px);
}

.btn--outline:hover {
  border-color: var(--color-primary);
  background: rgba(43, 184, 232, 0.05);
  transform: translateY(-2px);
}

.btn--large {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

.btn--small {
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
}

.btn--glow {
  animation: btnGlow 3s ease-in-out infinite;
}

@keyframes btnGlow {
  0%, 100% { box-shadow: 0 4px 15px rgba(43, 184, 232, 0.3); }
  50% { box-shadow: 0 4px 30px rgba(43, 184, 232, 0.5), 0 0 60px rgba(139, 78, 203, 0.15); }
}


/* ============================================
   3. HEADER / NAVEGACIÓN
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition-base);
}

.header--scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(43, 184, 232, 0.08);
  box-shadow: var(--shadow-sm);
  padding: 0.4rem 0;
}

.header--scrolled .nav__logo-img {
  height: 130px;
}

.nav {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 0.5rem;
}

.nav__logo-img {
  height: 220px;
  width: auto;
  transition: opacity var(--transition-fast);
}

.nav__logo:hover .nav__logo-img {
  opacity: 0.8;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 1rem;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
  transition: width var(--transition-base);
}

.nav__link:hover {
  color: var(--color-primary);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__cta {
  font-size: 0.85rem;
}

/* Menú hamburguesa (móvil) */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.nav__toggle--active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle--active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle--active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* ============================================
   4. HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-hero-bg);
  overflow: hidden;
  padding: 8rem 0 4rem;
}

/* Formas decorativas de fondo */
.hero__bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.hero__shape--1 {
  width: 500px;
  height: 500px;
  background: rgba(43, 184, 232, 0.15);
  top: -10%;
  right: -5%;
  animation: floatShape 20s ease-in-out infinite;
}

.hero__shape--2 {
  width: 400px;
  height: 400px;
  background: rgba(139, 78, 203, 0.12);
  bottom: -5%;
  left: -5%;
  animation: floatShape 25s ease-in-out infinite reverse;
}

.hero__shape--3 {
  width: 300px;
  height: 300px;
  background: rgba(243, 108, 158, 0.1);
  top: 30%;
  left: 50%;
  animation: floatShape 18s ease-in-out infinite 5s;
}

@keyframes floatShape {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -20px) scale(1.05); }
  50% { transform: translate(-20px, 30px) scale(0.95); }
  75% { transform: translate(20px, 20px) scale(1.02); }
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.hero__badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: rgba(43, 184, 232, 0.08);
  border: 1px solid rgba(43, 184, 232, 0.15);
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero__title-gradient {
  background: var(--gradient-full);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

/* Estadísticas del Hero */
.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-xl);
  padding: 1.5rem 2.5rem;
  box-shadow: var(--shadow-md);
}

.hero__stat {
  text-align: center;
}

.hero__stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.hero__stat-label {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(0, 0, 0, 0.08);
}


/* ============================================
   5. SECCIÓN PRODUCTOS
   ============================================ */
.products {
  padding: var(--section-padding);
  background: var(--color-bg-white);
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Tarjeta de producto */
.product-card {
  background: var(--color-bg-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(43, 184, 232, 0.15);
}

.product-card__image {
  position: relative;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-card__image--sleeves {
  background: linear-gradient(135deg, #e8f7fd 0%, #f0e8ff 100%);
}

.product-card__image--etiquetas {
  background: linear-gradient(135deg, #fff0f5 0%, #e8f7fd 100%);
}

.product-card__image--film {
  background: linear-gradient(135deg, #f0e8ff 0%, #fff0f5 100%);
}

.product-card__illustration {
  width: 160px;
  height: 160px;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-card__illustration {
  transform: scale(1.08);
}

.product-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--gradient-primary);
  color: #FFFFFF;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
}

.product-card__content {
  padding: 1.5rem 1.75rem 2rem;
}

.product-card__title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.product-card__description {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--color-text-secondary);
  margin-bottom: 1.25rem;
}

.product-card__benefits {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.product-card__benefits li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text);
}

.product-card__benefits svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

.product-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary);
  transition: all var(--transition-fast);
}

.product-card__link:hover {
  gap: 0.7rem;
  color: var(--color-secondary);
}

.product-card__link svg {
  transition: transform var(--transition-fast);
}

.product-card__link:hover svg {
  transform: translateX(3px);
}


/* ============================================
   6. SECCIÓN VENTAJAS
   ============================================ */
.advantages {
  padding: var(--section-padding);
  background: var(--color-bg);
}

.advantages__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* Tarjeta de ventaja */
.advantage-card {
  background: var(--color-bg-white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.advantage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.advantage-card:hover::before {
  transform: scaleX(1);
}

.advantage-card__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: transform var(--transition-base);
}

.advantage-card:hover .advantage-card__icon {
  transform: scale(1.1);
}

.advantage-card__icon--1 {
  background: rgba(43, 184, 232, 0.1);
  color: var(--color-primary);
}

.advantage-card__icon--2 {
  background: rgba(139, 78, 203, 0.1);
  color: var(--color-secondary);
}

.advantage-card__icon--3 {
  background: rgba(243, 108, 158, 0.1);
  color: var(--color-accent);
}

.advantage-card__icon--4 {
  background: linear-gradient(135deg, rgba(43, 184, 232, 0.1), rgba(139, 78, 203, 0.1));
  color: var(--color-secondary);
}

.advantage-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.advantage-card__description {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
}


/* ============================================
   7. SECCIÓN CTA FINAL
   ============================================ */
.cta-section {
  padding: 4rem 0;
  background: var(--color-bg-white);
}

.cta-block {
  background: var(--gradient-hero-bg);
  border: 1px solid rgba(43, 184, 232, 0.1);
  border-radius: var(--radius-xl);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Decoración de fondo del CTA */
.cta-block::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(43, 184, 232, 0.06);
  filter: blur(60px);
  pointer-events: none;
}

.cta-block::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(139, 78, 203, 0.05);
  filter: blur(50px);
  pointer-events: none;
}

.cta-block__title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-block__description {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  max-width: 500px;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 1;
}

.cta-block .btn {
  position: relative;
  z-index: 1;
}


/* ============================================
   8. FOOTER
   ============================================ */
.footer {
  background: var(--color-text);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer__logo {
  height: 190px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer__brand-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  max-width: 280px;
}

.footer__heading {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.25rem;
}

.footer__address {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}

.footer__email {
  font-size: 0.9rem;
  color: var(--color-primary);
  transition: color var(--transition-fast);
}

.footer__email:hover {
  color: #5DD4FF;
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__list a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-fast);
}

.footer__list a:hover {
  color: var(--color-primary);
}

.footer__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__actions .btn {
  text-align: center;
  justify-content: center;
}

.footer__website {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-fast);
  text-align: center;
}

.footer__website:hover {
  color: var(--color-primary);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  text-align: center;
}

.footer__copyright {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}


/* ============================================
   9. ANIMACIONES
   ============================================ */

/* Elementos que se animan al entrar en viewport */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Delay para animaciones escalonadas (definido via data-delay en HTML) */
.animate-on-scroll[data-delay="100"] { transition-delay: 0.1s; }
.animate-on-scroll[data-delay="200"] { transition-delay: 0.2s; }
.animate-on-scroll[data-delay="300"] { transition-delay: 0.3s; }


/* ============================================
   10. MEDIA QUERIES (RESPONSIVE)
   ============================================ */

/* Tablet grande / Desktop pequeño */
@media (max-width: 1024px) {
  .hero__title {
    font-size: 2.8rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .products__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .advantages__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

/* Tablet */
@media (max-width: 768px) {
  :root {
    --section-padding: 4rem 0;
  }

  /* Header móvil */
  .nav__toggle {
    display: flex;
  }

  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
    transition: right var(--transition-base);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  }

  .nav__menu--active {
    right: 0;
  }

  .nav__link {
    font-size: 1.1rem;
  }

  /* Hero móvil */
  .hero {
    padding: 7rem 0 3rem;
    min-height: auto;
  }

  .hero__title {
    font-size: 2.2rem;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .hero__stats {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }

  .hero__stat-divider {
    width: 60px;
    height: 1px;
  }

  /* Productos móvil */
  .products__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 500px;
    margin: 0 auto;
  }

  .product-card__image {
    height: 180px;
  }

  /* Ventajas móvil */
  .advantages__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
  }

  /* CTA móvil */
  .cta-block {
    padding: 3rem 1.5rem;
  }

  .cta-block__title {
    font-size: 1.75rem;
  }

  /* Footer móvil */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__brand-text {
    max-width: 100%;
  }

  .footer__actions {
    align-items: flex-start;
  }
}

/* Móvil pequeño */
@media (max-width: 480px) {
  .hero__title {
    font-size: 1.85rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .btn--large {
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
  }

  .product-card__content {
    padding: 1.25rem 1.25rem 1.5rem;
  }

  .cta-block__title {
    font-size: 1.5rem;
  }
}
