/** Shopify CDN: Minification failed

Line 22:16 Expected identifier but found whitespace
Line 22:18 Unexpected "{"
Line 22:27 Expected ":"
Line 22:53 Expected ":"
Line 23:19 Expected identifier but found whitespace
Line 23:21 Unexpected "{"
Line 23:30 Expected ":"
Line 23:59 Expected ":"
Line 27:4 Unexpected "{"
Line 27:5 Expected identifier but found "%"
... and 24 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:banner-sin-texto (INDEX:6, SCOPED:FALSE) */
.banner-responsive-wrapper {
    padding-top: {{ section.settings.padding_top }}px;
    padding-bottom: {{ section.settings.padding_bottom }}px;
  }

  .banner-responsive-container {
    {% if section.settings.width == 'page' %}
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 20px;
    {% else %}
      max-width: 100%;
      margin: 0;
      padding: 0;
    {% endif %}
  }

  .banner-responsive-image {
    width: 100%;
    line-height: 0;
  }

  .banner-responsive-image img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* Mostrar solo desktop en pantallas grandes */
  .banner-responsive-desktop {
    display: block;
  }

  .banner-responsive-mobile {
    display: none;
  }

  /* Mostrar solo mobile en pantallas pequeñas */
  @media screen and (max-width: 749px) {
    .banner-responsive-desktop {
      display: none;
    }

    .banner-responsive-mobile {
      display: block;
    }
  }

  /* Si hay enlace, agregar cursor pointer */
  {% if section.settings.banner_link != blank %}
    .banner-responsive-container {
      cursor: pointer;
    }

    .banner-responsive-image {
      transition: opacity 0.3s ease;
    }

    .banner-responsive-container:hover .banner-responsive-image {
      opacity: 0.95;
    }
  {% endif %}
/* END_SECTION:banner-sin-texto */

/* START_SECTION:comparacion-empresas (INDEX:19, SCOPED:FALSE) */
.comparison-section-wrapper {
    padding-top: {{ section.settings.padding_top }}px;
    padding-bottom: {{ section.settings.padding_bottom }}px;
    background-color: #F5F5F5;
  }

  .comparison-section-container {
    max-width: 1400px;
    margin: 0 auto;
  }

  /* Encabezado */
  .comparison-header {
    text-align: center;
    margin-bottom: 50px;
  }

  .comparison-title {
    font-size: 3rem;
    font-weight: 900;
    color: #000 !important;
    margin: 0 auto 30px;
    letter-spacing: 2px;
    text-align: center;
    max-width: 800px;
    animation: titleAnimation 1s ease forwards;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    display: block;
  }

  .comparison-vs-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    animation: badgePulse 2s ease infinite;
  }

  .comparison-vs-badge span {
    font-size: 2rem;
    font-weight: 900;
    font-style: italic;
  }

  .comparison-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    animation: fadeInUp 0.6s ease;
  }

  /* Grid de tarjetas */
  .comparison-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    animation: fadeIn 0.8s ease;
  }

  .comparison-card {
    border-radius: 24px;
    padding: 40px 35px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }

  .comparison-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
  }

  .comparison-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  }

  .comparison-card__title {
    font-size: 1.8rem;
    font-weight: 900;
    margin: 0 0 8px 0;
    text-align: center;
    letter-spacing: 0.5px;
  }

  .comparison-card__subtitle {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 30px 0;
    text-align: center;
    opacity: 0.9;
  }

  .comparison-card__logo {
    display: flex;
    justify-content: center;
    margin-bottom: 35px;
  }

  .comparison-card__logo-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
  }

  .comparison-card:hover .comparison-card__logo-circle {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  }

  .comparison-card__logo img {
    width: 100px;
    height: 100px;
    object-fit: contain;
  }

  .comparison-card__items {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .comparison-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 22px;
    border-radius: 60px;
    background: rgba(0, 0, 0, 0.08);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
  }

  .comparison-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 60px;
    background: rgba(255, 255, 255, 0.15);
    opacity: 0;
    transition: opacity 0.35s ease;
  }

  .comparison-item:hover::before {
    opacity: 1;
  }

  .comparison-item:hover {
    transform: scale(1.04) translateX(5px);
    background: rgba(0, 0, 0, 0.12);
  }

  .comparison-item__icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .comparison-item:hover .comparison-item__icon {
    transform: rotate(15deg) scale(1.15);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  }

  .comparison-item__text {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    flex: 1;
  }

  /* Animaciones */
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes pulse {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
  }
  @media screen and (max-width: 990px) {
    .comparison-cards-grid {
      grid-template-columns: 1fr;
      gap: 30px;
    }

    .comparison-title {
      font-size: 2.2rem;
    }

    .comparison-card {
      padding: 35px 25px;
    }

    .comparison-card__logo-circle {
      width: 120px;
      height: 120px;
    }

    .comparison-card__logo img {
      width: 85px;
      height: 85px;
    }
  }

  @media screen and (max-width: 749px) {
    .comparison-title {
      font-size: 1.8rem;
    }

    .comparison-vs-badge {
      width: 70px;
      height: 70px;
    }

    .comparison-vs-badge span {
      font-size: 1.5rem;
    }

    .comparison-subtitle {
      font-size: 1.2rem;
    }

    .comparison-card__title {
      font-size: 1.4rem;
    }

    .comparison-card__subtitle {
      font-size: 0.85rem;
    }

    .comparison-item {
      padding: 14px 18px;
    }

    .comparison-item__icon {
      width: 38px;
      height: 38px;
    }

    .comparison-item__text {
      font-size: 14px;
    }
  }
/* END_SECTION:comparacion-empresas */

/* START_SECTION:productos-estrellas (INDEX:60, SCOPED:FALSE) */
.productos-estrellas-wrapper {
    padding-top: {{ section.settings.padding_top }}px;
    padding-bottom: {{ section.settings.padding_bottom }}px;
  }

  .productos-estrellas-container {
    max-width: 1400px;
    margin: 0 auto;
  }

  /* Encabezado */
  .productos-estrellas-header {
    text-align: center;
    margin-bottom: 50px;
  }

  .productos-estrellas-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin: 0 0 15px 0;
    letter-spacing: 1px;
  }

  .productos-estrellas-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    margin: 0;
  }

  /* Grid */
  .productos-estrellas-grid {
    display: flex;
    flex-wrap: wrap;
  }

  /* Enlace de la tarjeta */
  .producto-estrella-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    max-width: 380px;
  }

  /* Tarjeta de Producto */
  .producto-estrella-card {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
  }

  .producto-estrella-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  }

  /* Imagen */
  .producto-estrella-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #f0f0f0;
  }

  .producto-estrella-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

  .producto-estrella-card:hover .producto-estrella-image img {
    transform: scale(1.08);
  }

  /* Contenido */
  .producto-estrella-content {
    padding: 25px;
    position: relative;
  }

  /* Badge */
  .producto-estrella-badge {
    position: absolute;
    top: -15px;
    right: 25px;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  /* Nombre */
  .producto-estrella-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 10px 0 12px 0;
    line-height: 1.3;
  }

  /* Descripción */
  .producto-estrella-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 15px 0;
  }

  /* Precio */
  .producto-estrella-price {
    font-size: 1.8rem;
    font-weight: 900;
    margin: 15px 0 0 0;
  }

  /* Responsive */
  @media screen and (max-width: 990px) {
    .productos-estrellas-grid {
      justify-content: center !important;
    }

    .producto-estrella-card-link {
      max-width: 340px;
    }

    .productos-estrellas-title {
      font-size: 2rem;
    }

    .producto-estrella-image {
      height: 260px;
    }
  }

  @media screen and (max-width: 749px) {
    .productos-estrellas-title {
      font-size: 1.8rem;
    }

    .producto-estrella-name {
      font-size: 1.3rem;
    }

    .producto-estrella-price {
      font-size: 1.5rem;
    }

    .producto-estrella-content {
      padding: 20px;
    }

    .producto-estrella-image {
      height: 240px;
    }
  }
/* END_SECTION:productos-estrellas */