/** Shopify CDN: Minification failed

Line 348:0 All "@import" rules must come first

**/
/* =========================================
   FIDMI PRODUCTOS - Landing Page Styles
   ========================================= */

.fidmi-universo {
  --fidmi-blue: #4285F4;
  --fidmi-pink: #E08B9D;
  --fidmi-white: #FFFFFF;
  --fidmi-dark: #1a1a1a;
  --fidmi-font: 'Poppins', sans-serif;
  font-family: var(--fidmi-font);
  overflow-x: hidden;
}

/* ---- HERO ---- */
.fidmi-hero {
  background-color: var(--fidmi-blue);
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 80px 20px 60px;
  color: var(--fidmi-white);
  position: relative;
  overflow: hidden;
}

.fidmi-hero__content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.fidmi-badge {
  display: inline-block;
  background: #FF6B8A;
  color: var(--fidmi-white);
  padding: 6px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.fidmi-hero__title {
  font-size: clamp(42px, 8vw, 72px);
  font-weight: 800;
  line-height: 1;
  margin: 0 0 4px;
}

.fidmi-hero__logo img {
  max-width: 300px;
  height: auto;
}

.fidmi-hero__logo-text {
  font-size: clamp(48px, 10vw, 90px);
  font-weight: 800;
  line-height: 1;
}

.fidmi-hero__logo-text sup {
  font-size: 0.3em;
  vertical-align: super;
}

.fidmi-hero__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 24px 0;
}

.fidmi-dot {
  width: 14px;
  height: 14px;
  background: var(--fidmi-white);
  border-radius: 50%;
  display: inline-block;
}

.fidmi-hero__subtitle {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.95;
  margin: 0;
  max-width: 500px;
  margin-inline: auto;
}

/* ---- PRODUCT SECTIONS ---- */
.fidmi-product {
  position: relative;
  padding: 60px 20px;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fidmi-bg-white {
  background-color: var(--fidmi-white);
  color: var(--fidmi-dark);
}

.fidmi-bg-pink {
  background-color: var(--fidmi-pink);
  color: var(--fidmi-white);
}

.fidmi-bg-blue {
  background-color: var(--fidmi-blue);
  color: var(--fidmi-white);
}

.fidmi-product__doodle {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 1;
}

.fidmi-product__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1100px;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* Text Right = Image Left (default) */
.fidmi-layout-text-right .fidmi-product__inner {
  flex-direction: row;
}

/* Text Left = Image Right */
.fidmi-layout-text-left .fidmi-product__inner {
  flex-direction: row-reverse;
}

/* Mirror text alignment for text-left sections */
.fidmi-layout-text-left .fidmi-product__text {
  text-align: right;
}

.fidmi-product__image {
  flex: 1 1 50%;
  min-width: 0;
  max-width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.fidmi-product__image img {
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 380px;
  object-fit: contain;
  display: block;
}

.fidmi-product__text {
  flex: 1 1 50%;
  min-width: 0;
}

.fidmi-product__name {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin: 0 0 12px;
  font-style: italic;
  line-height: 1.1;
}

.fidmi-product__desc1 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px;
  line-height: 1.4;
}

.fidmi-product__desc2 {
  font-size: 15px;
  margin: 0 0 24px;
  line-height: 1.5;
  opacity: 0.9;
}

/* White bg sections: dark text, blue button */
.fidmi-bg-white .fidmi-product__name {
  color: var(--fidmi-blue);
}

/* Colored bg sections: ensure product name stays white (overrides theme H2 rules) */
.fidmi-bg-pink .fidmi-product__name,
.fidmi-bg-blue .fidmi-product__name {
  color: var(--fidmi-white);
}

.fidmi-bg-white .fidmi-btn {
  background: var(--fidmi-blue);
  color: var(--fidmi-white);
}

/* Pink bg sections: white text */
.fidmi-bg-pink .fidmi-btn {
  background: var(--fidmi-white);
  color: var(--fidmi-pink);
}

/* Blue bg sections: white text */
.fidmi-bg-blue .fidmi-btn {
  background: var(--fidmi-white);
  color: var(--fidmi-blue);
}

/* ---- BUTTONS ---- */
.fidmi-btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  letter-spacing: 0.3px;
}

.fidmi-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.fidmi-btn--outline {
  background: transparent;
  border: 2px solid var(--fidmi-white);
  color: var(--fidmi-white);
}

.fidmi-btn--outline:hover {
  background: var(--fidmi-white);
  color: var(--fidmi-blue);
}

/* ---- FOOTER CTA ---- */
.fidmi-footer-cta {
  background-color: var(--fidmi-blue);
  background-size: cover;
  background-position: center;
  color: var(--fidmi-white);
  text-align: center;
  padding: 80px 20px;
  position: relative;
}

.fidmi-footer-cta__content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.fidmi-footer-cta__sub {
  font-size: 15px;
  margin: 0 0 16px;
  opacity: 0.9;
  line-height: 1.5;
}

.fidmi-footer-cta__title {
  font-size: clamp(32px, 6vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 32px;
}

.fidmi-highlight {
  background: #FF6B8A;
  padding: 2px 16px;
  border-radius: 8px;
  display: inline-block;
  margin-top: 4px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .fidmi-hero {
    padding: 50px 16px 40px;
  }

  .fidmi-product {
    padding: 40px 16px;
    min-height: auto;
  }

  .fidmi-product__inner {
    flex-direction: column !important;
    text-align: center;
    gap: 24px;
  }

  .fidmi-product__image,
  .fidmi-product__text {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .fidmi-layout-text-left .fidmi-product__text {
    text-align: center;
  }

  .fidmi-product__image img {
    max-height: 280px;
  }

  .fidmi-product__name {
    font-size: 28px;
  }

  .fidmi-footer-cta {
    padding: 50px 16px;
  }

  .fidmi-footer-cta__title {
    font-size: 28px;
  }
}

/* ---- GOOGLE FONTS IMPORT ---- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,600;0,700;0,800;1,700&display=swap');
