/** Shopify CDN: Minification failed

Line 19:15 Expected identifier but found whitespace
Line 19:16 Unexpected "linear-gradient("
Line 20:17 Expected identifier but found "%"
Line 21:18 Unexpected bad URL token
Line 21:25 Expected ")" to end URL token
Line 22:17 Expected identifier but found "%"
Line 24:17 Expected identifier but found "%"
Line 25:16 Expected identifier but found "50%"

**/


/* CSS from section stylesheet tags */
.banner-negocios {
    position: relative;
    width: 100%;
    background: linear-gradient(0deg, rgba(249, 185, 0, 0.90) 0%, rgba(249, 185, 0, 0.90) 100%), 
                {% if section.settings.background_image %}
                  url({{ section.settings.background_image | image_url: width: 1728 }})
                {% else %}
                  lightgray
                {% endif %} 
                50% / cover no-repeat;
    background-size: cover;
    background-position: center;
  }

  .banner-negocios__container {
    max-width: 1476px;
    margin: 0 auto;
    padding: 64px 126px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
  }

  .banner-negocios__content {
    flex: 1;
    max-width: 640px;
  }

  .banner-negocios__title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    color: #1A1B18;
    margin: 0 0 16px;
    text-transform: uppercase;
  }

  .banner-negocios__description {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #1A1B18;
    margin: 0;
  }

  .banner-negocios__description strong {
    font-weight: 700;
  }

  .banner-negocios__cta {
    flex-shrink: 0;
  }

  .banner-negocios__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    height: 56px;
    background: #1A1B18;
    color: #FFFFFF;
    font-family: var(--font-alternate);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 82px;
    white-space: nowrap;
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .banner-negocios__button:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }

  /* Tablet */
  @media (max-width: 990px) {
    .banner-negocios__container {
      padding: 48px 80px;
      gap: 40px;
    }

    .banner-negocios__title {
      font-size: 24px;
    }

    .banner-negocios__description {
      font-size: 13px;
    }

    .banner-negocios__button {
      font-size: 13px;
      padding: 14px 32px;
      height: 52px;
    }
  }

  /* Mobile */
  @media (max-width: 768px) {
    .banner-negocios__container {
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 60px 24px;
      gap: 40px;
    }

    .banner-negocios__content {
      max-width: 100%;
    }

    .banner-negocios__title {
      font-size: 32px;
      margin-bottom: 24px;
    }

    .banner-negocios__description {
      font-size: 16px;
      line-height: 1.6;
    }

    .banner-negocios__cta {
      width: 100%;
    }

    .banner-negocios__button {
      width: 100%;
      max-width: 100%;
      height: 64px;
      font-size: 16px;
      padding: 20px 32px;
    }
  }

  @media (max-width: 480px) {
    .banner-negocios__container {
      padding: 48px 20px;
    }

    .banner-negocios__title {
      font-size: 28px;
    }

    .banner-negocios__description {
      font-size: 15px;
    }

    .banner-negocios__button {
      height: 60px;
      font-size: 15px;
    }
  }
.beneficios {
    width: 100%;
    background-color: var(--color-background, #FFFFFF);
    padding: 24px 0 126px 0; /* Padding vertical según Figma */
  }

  .beneficios__container {
    margin: 0 auto;
    padding: 0 126px; /* Padding lateral según Figma */
  }

  /* Header Section */
  .beneficios__header {
    height: 60px; /* Alto exacto según Figma */
    margin: 0 auto 82px auto; /* Gap de 82px según Figma */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px; /* Gap entre título y decoración según Figma */
  }

  .beneficios__title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.19;
    color: #1A1B18; /* Color exacto según Figma */
    text-align: center;
    margin: 0;
    height: 38px; /* Alto exacto según Figma */
    width: 100%;
    text-transform: uppercase;
  }

  .beneficios__decoration {
    width: 200px;
    height: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .beneficios__decoration svg {
    width: 100%;
    height: 100%;
  }

  /* Benefits Content */
  .beneficios__content {
    display: flex;
    gap: 12px;
    width: 100%;
    min-height: 278px;
    margin: 0 auto;
    justify-content: space-between;
  }

  /* Benefit Cards */
  .beneficios__card {
    width: 19%; 
    min-height: 278px;
    background-color: #F9B900;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 48px 8px 48px 8px;
    gap: 10px;
    flex-shrink: 0;
  }

  /* Icon Section */
  .beneficios__icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .beneficios__icon-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .beneficios__icon-default {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .beneficios__icon-default svg {
    width: 100%;
    height: 100%;
  }

  /* Text Section */
  .beneficios__text {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
    flex-grow: 1;
  }

  .beneficios__card-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.89;
    color: #1A1B18;
    margin: 0;
    height: 34px;
    width: 100%;
    text-transform: uppercase;
  }

  @media (max-width: 1400px) {
    .beneficios__card-title {
      font-size: 22px;
    }
  }

  .beneficios__card-subtitle {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    color: #990000;
    margin: 0;
    min-height: 24px;
    width: 100%;
    text-transform: uppercase;
    font-family: var(--font-alternate);
  }

  @media (max-width: 1400px) {
    .beneficios__card-subtitle {
      font-size: 16px;
    }
  }

  .beneficios__card-note {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.67;
    color: #1A1B18;
    margin: 0;
    height: 20px;
    width: 100%;
  }

  @media (max-width: 1400px) {
    .beneficios__card-note {
      font-size: 14px;
    }
  }

  /* Responsive Design */
  @media (max-width: 1200px) {
    .beneficios__container {
      padding: 0 var(--page-margin, 20px);
    }
    
    .beneficios__header,
    .beneficios__content {
      width: 100%;
      max-width: 1200px;
    }
    
    .beneficios__content {
      gap: 16px;
    }
    
    .beneficios__card {
      width: calc((100% - 64px) / 5);
      min-width: 200px;
    }
  }

  @media (max-width: 990px) {
    .beneficios__content {
      flex-wrap: wrap;
      height: auto;
      gap: 20px;
      justify-content: center;
    }
    
    .beneficios__card {
      width: calc((100% - 40px) / 3);
      min-width: 240px;
    }
  }

  @media (max-width: 768px) {
    .beneficios {
      padding: 20px 0 60px 0;
    }
    
    .beneficios__header {
      margin-bottom: 40px;
    }
    
    .beneficios__title {
      font-size: 24px;
    }
    
    .beneficios__content {
      flex-direction: column;
      align-items: center;
      gap: 16px;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
    }
    
    .beneficios__card {
      width: 100%;
      min-width: 100%;
      max-width: 300px;
      min-height: 100%;
      height: auto;
      padding: 32px 16px;
    }
    
    .beneficios__icon {
      width: 60px;
      height: 60px;
    }
    
    .beneficios__text {
      width: 100%;
    }
  }

  @media (max-width: 480px) {
    .beneficios__card {
      max-width: 280px;
      padding: 24px 12px;
    }
    
    .beneficios__title {
      font-size: 20px;
    }
    
    .beneficios__card-title {
      font-size: 16px;
    }
    
    .beneficios__card-subtitle {
      font-size: 15px;
    }
    
    .beneficios__card-note {
      font-size: 11px;
    }
  }
.cart-page {
    padding: 40px 0 80px;
    background: #fff;
    min-height: 60vh;
  }

  .cart-page__container {
    max-width: 1476px;
    margin: 0 auto;
    padding: 0 126px;
  }

  .cart-page__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 48px;
    padding-bottom: 24px;
    border-bottom: 2px solid #1A1B18;
  }

  .cart-page__title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: #1A1B18;
    margin: 0;
    text-transform: uppercase;
  }

  .cart-page__count {
    font-family: var(--font-alternate);
    font-size: 18px;
    color: #666;
  }

  .cart-page__content {
    display: grid;
    grid-template-columns: 4fr 2fr;
    gap: 48px;
    align-items: start;
  }

  .cart-page__items {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .cart-page__notes {
    margin-top: 24px;
    padding: 24px;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
  }

  .cart-page__notes-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-alternate);
    font-size: 16px;
    font-weight: 600;
    color: #1A1B18;
    margin-bottom: 12px;
  }

  .cart-page__notes-textarea {
    width: 100%;
    min-height: 100px;
    padding: 12px;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    resize: vertical;
  }

  @media (max-width: 1199px) {
    .cart-page__container {
      padding: 0 24px;
    }

    .cart-page__content {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 767px) {
    .cart-page__title {
      font-size: 28px;
    }
  }
.visually-hidden {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
  }

  .collection {
    background: #fff;
  }

  .collection__container {
    max-width: 1728px;
    margin: 0 auto;
    padding: 0 80px;
    display: grid;
    grid-template-columns: 226px 1fr;
    column-gap: 48px;
  }

  .collection__filters {
    width: 226px;
  }

  .filters__header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
  }

  .filters__header svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }

  .filters__heading {
    font-family: var(--font-alternate);
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 34px;
    color: #980000;
    margin: 0;
    text-transform: uppercase;
  }

  .filters__form {
    background: rgba(249, 185, 0, 0.20);
    border-radius: 16px;
    padding: 24px;
  }

  .filter-group {
    margin: 0 0 24px;
  }

  .filter-group:last-child {
    margin-bottom: 0;
  }

  .filter-group__legend {
    font-family: var(--font-alternate);
    font-size: 20px;
    font-weight: 600;
    color: #1A1B18;
    margin: 0 0 16px;
    text-transform: uppercase;
  }

  .filter-group__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    row-gap: 12px;
  }

  .checkbox {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
  }

  .checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #1A1B18;
    cursor: pointer;
  }

  .checkbox__label {
    font-family: var(--font-body);
    font-size: 14px;
    color: #1A1B18;
    cursor: pointer;
    line-height: 1.2;
  }

  .collection__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 36px;
    margin: 0 0 32px;
  }

  .collection__count {
    font-family: var(--font-body);
    font-size: 16px;
    color: #1A1B18;
  }

  .sort__label {
    position: absolute;
    left: -9999px;
  }

  .sort__select {
    height: 36px;
    border: 1px solid #1A1B18;
    border-radius: 8px;
    background: #fff;
    padding: 0 12px;
    font-family: var(--font-body);
    font-size: 14px;
    color: #1A1B18;
  }

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

  .card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 0;
    overflow: hidden;
  }

  .card__media {
    position: relative;
    display: block;
    aspect-ratio: 379 / 280;
    background: #fff;
    overflow: hidden;
  }

  .card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: 1px solid #E5E5E5;
  }

  .card__colorbar {
    display: block;
    width: 70%;
    height: 7px;
    background: #6B4A09;
  }

  .badge {
    position: absolute;
    top: 16px;
    right: 0;
    height: 32px;
    padding: 0 12px;
    border-radius: 64px 0 0 64px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .badge--new {
    background: #F9B900;
    color: #1A1B18;
  }

  .badge--new svg {
    width: 20px;
    height: 20px;
  }

  .badge--top {
    background: #980000;
    color: #fff;
  }

  .badge--top svg {
    width: 20px;
    height: 20px;
  }

  .badge--sale {
    background: #EE7821;
    color: #fff;
  }

  .badge--sale svg {
    width: 20px;
    height: 20px;
  }

  .card__body {
    display: flex;
    flex-direction: column;
    padding: 32px 2px;
    gap: 20px;
    flex: 1;
  }

  .card__info {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: start;
  }

  .card__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .card__title {
    line-height: 24px;
  }

  .card__title a{
    margin: 0;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: #1A1B18;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 24px;
  }

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

  .card__subtitle {
    font-family: var(--font-body);
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.3;
  }

  .card__price-container {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: right;
    flex-direction: column;
  }

  .card__price {
    font-family: var(--font-alternate);
    font-size: 18px;
    font-weight: 600;
    color: #1A1B18;
    line-height: 1;
  }

  .card__price-suffix {
    font-family: var(--font-body);
    font-size: 12px;
    color: #666;
    margin-left: 4px;
  }

  .card__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all .2s ease;
    border: none;
    cursor: pointer;
  }

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

  .btn--primary {
    flex: 1;
    height: 48px;
    border-radius: 24px;
    background: #1A1B18;
    color: #fff;
    padding: 0 20px;
    font-family: var(--font-alternate);
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .btn--primary:hover {
    background: #333;
  }

  .btn--primary svg {
    width: 20px;
    height: 20px;
    margin-right: 8px;
  }

  .btn--icon {
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    border: 1px solid #1A1B18 !important;
    background: #fff !important;
    color: #1A1B18 !important;
    font-size: 20px !important;
    font-weight: 300 !important;
    line-height: 1 !important;
  }

  .btn--icon:hover {
    background: #1A1B18 !important;
    color: #fff !important;
  }

  .collection__banner {
    position: relative;
    grid-column: 1 / -1;
    min-height: 220px;
    border-radius: 16px;
    overflow: hidden;
    display: grid;
  }

  .collection__banner-media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
  }

  .collection__banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(26, 27, 24, .80) 0%, rgba(26, 27, 24, .80) 100%);
  }

  .collection__banner-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    justify-content: space-between;
    padding: 32px;
    color: #fff;
    gap: 24px;
  }

  .collection__banner-title {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 28px;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .collection__banner-text {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    max-width: 60%;
  }

  .collection__banner-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    border-radius: 82px;
    background: #F9B900;
    color: #1A1B18;
    text-decoration: none;
    font-family: var(--font-alternate);
    font-weight: 600;
    text-transform: uppercase;
  }

  .collection__pagination {
    margin: 40px 0;
    display: flex;
    justify-content: center;
  }

  .btn-load-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 48px;
    height: 48px;
    background: transparent;
    border: 2px solid #644A09;
    border-radius: 82px;
    color: #644A09;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .btn-load-more:hover:not(:disabled) {
    background: #644A09;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(100, 74, 9, 0.3);
  }

  .btn-load-more:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }

  .btn-load-more__loading {
    font-weight: 400;
  }

  @media (max-width:1199px) {
    .collection__container {
      padding: 0 24px;
      grid-template-columns: 1fr;
    }

    .collection__filters {
      order: 2;
      margin-top: 24px;
    }

    .product-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 24px;
    }

    .collection__banner-content {
      flex-direction: column;
      align-items: flex-start;
    }

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

  @media (max-width:767px) {
    .product-grid {
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .card {
      height: auto;
    }

    .card__media {
      height: auto;
    }

    .card__image {
      height: auto;
    }

    .collection__top {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
      height: auto;
    }

    .btn-load-more {
      width: 100%;
      max-width: 300px;
    }
  }
.collections {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(var(--collection-card-size), 100%), 1fr));
    gap: var(--grid-gap);
  }
  .collections--compact {
    --collection-card-size: 160px;
  }
  .collections--full {
    --collection-card-size: 280px;
  }
  .collection-card {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
.contenido-con-imagen {
    width: 100%;
    height: 852px;
    padding: 126px 0;
    background-color: #FFFFFF;
  }

  .contenido-con-imagen__container {
    max-width: 1728px;
    margin: 0 auto;
    padding: 0 126px;
    height: 100%;
  }

  .contenido-con-imagen__content {
    display: flex;
    gap: 82px;
    height: 600px;
    align-items: flex-start;
  }

  /* Image Section - 726x600px */
  .contenido-con-imagen__image-container {
    flex: 1 0;
    height: 600px;
  }

  .contenido-con-imagen__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
  }

  .contenido-con-imagen__image-placeholder {
    width: 100%;
    height: 100%;
    background-color: #F5F5F5;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666666;
    font-size: 18px;
  }

  /* Text Content Section - 668x508px */
  .contenido-con-imagen__text-container {
    flex: 1;
    max-width: 668px;
    height: 508px;
    padding-top: 46px;
    display: flex;
    flex-direction: column;
    gap: 48px;
  }

  .contenido-con-imagen__text-content {
    display: flex;
    flex-direction: column;
    gap: 48px;
    height: 412px;
  }

  /* Title Section - 668x172px */
  .contenido-con-imagen__title-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 172px;
  }

  .contenido-con-imagen__title-subtitle {
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 142px;
  }

  /* Title - 668x92px */
  .contenido-con-imagen__title {
    width: 668px;
    height: 92px;
    color: #1A1B18;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
    text-align: left;
  }

  /* Subtitle - 668x42px */
  .contenido-con-imagen__subtitle {
    width: 668px;
    height: 42px;
    color: #980000;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.75;
    margin: 0;
    text-align: left;
  }

  /* Decorative Line - 200x14px */
  .contenido-con-imagen__decorative-line {
    width: 200px;
    height: 14px;
  }

  /* Benefits List - 668x192px */
  .contenido-con-imagen__benefits-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 192px;
  }

  .contenido-con-imagen__benefit-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    min-height: 40px;
  }

  .contenido-con-imagen__benefit-icon {
    flex: 0 0 20px;
    width: 20px;
    height: 24px;
    display: flex;
    align-items: flex-start;
    padding-top: 4px;
  }

  .contenido-con-imagen__benefit-text {
    flex: 1;
    max-width: 632px;
    color: #1A1B18;
    font-size: 16px;
    line-height: 1.5;
  }

  .contenido-con-imagen__benefit-text strong {
    font-weight: 600;
  }

  /* Video Button - 242x48px */
  .contenido-con-imagen__video-button {
    height: 48px;
  }

  .contenido-con-imagen__video-link {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: #1A1B18;
    transition: all 0.3s ease;
  }

  .contenido-con-imagen__video-link:hover {
    transform: translateX(4px);
  }

  .contenido-con-imagen__video-text {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 38px;
  }

  .contenido-con-imagen__video-label {
    font-size: 32px;
    font-weight: 400;
    text-decoration: underline;
    font-family: var(--font-heading);
  }

  .contenido-con-imagen__video-arrow {
    width: 44px;
    height: 25px;
  }

  .contenido-con-imagen__play-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
  }

  /* Tablet Responsive - 768px */
  @media (max-width: 768px) {
    .contenido-con-imagen {
      height: auto;
      padding: 80px 0;
    }

    .contenido-con-imagen__container {
      padding: 0 32px;
    }

    .contenido-con-imagen__content {
      flex-direction: column;
      gap: 48px;
      height: auto;
    }

    .contenido-con-imagen__image-container {
      flex: none;
      width: 100%;
      height: 400px;
    }

    .contenido-con-imagen__text-container {
      max-width: 100%;
      height: auto;
      padding-top: 0;
    }

    .contenido-con-imagen__title {
      width: 100%;
      height: auto;
      font-size: 36px;
    }

    .contenido-con-imagen__subtitle {
      width: 100%;
      height: auto;
      font-size: 20px;
    }

    .contenido-con-imagen__text-content {
      height: auto;
    }

    .contenido-con-imagen__title-section {
      height: auto;
    }

    .contenido-con-imagen__title-subtitle {
      height: auto;
    }

    .contenido-con-imagen__benefits-list {
      height: auto;
    }
  }

  /* Mobile Responsive - 480px */
  @media (max-width: 480px) {
    .contenido-con-imagen {
      padding: 60px 0;
    }

    .contenido-con-imagen__container {
      padding: 0 20px;
    }

    .contenido-con-imagen__content {
      gap: 32px;
    }

    .contenido-con-imagen__image-container {
      height: 300px;
    }

    .contenido-con-imagen__title {
      font-size: 28px;
    }

    .contenido-con-imagen__subtitle {
      font-size: 18px;
    }

    .contenido-con-imagen__benefit-text {
      font-size: 14px;
    }

    .contenido-con-imagen__video-label {
      font-size: 16px;
    }

    .contenido-con-imagen__play-icon {
      width: 40px;
      height: 40px;
    }
  }
.custom-section {
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  .custom-section__background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
  }
  .custom-section__background img {
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .custom-section__content {
    display: grid;
    grid-template-columns: var(--content-grid);
  }
  .custom-section__content > * {
    grid-column: 2;
  }
.footer {
    width: 100%;
    background-color: #1A1B18;
    color: #FFFFFF;
    padding: 82px 0 48px 0;
  }

  .footer__container {
    max-width: 1728px;
    margin: 0 auto;
    padding: 0 126px;
    display: flex;
    flex-direction: column;
    gap: 64px;
  }

  /* Main Content */
  .footer__main {
    display: flex;
    gap: 64px;
    align-items: flex-start;
  }

  /* Logo Section */
  .footer__logo {
    flex: 0 0 154px;
  }

  .footer__logo img {
    width: 154px;
    height: 121px;
    object-fit: contain;
  }

  .footer__logo-placeholder {
    width: 154px;
    height: 121px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F9B900;
    color: #1A1B18;
  }

  .footer__logo-placeholder h2 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    text-align: center;
  }

  /* Links Container */
  .footer__links-container {
    flex: 1;
    display: flex;
    gap: 32px;
  }

  .footer__column {
    flex: 0 0 150px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .footer__column-title {
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-transform: uppercase;
    color: #F9B900;
    margin: 0;
    font-family: var(--font-alternate);
  }

  .footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .footer__links a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.43;
    transition: color 0.2s ease;
  }

  .footer__links a:hover {
    color: #F9B900;
  }

  /* Contact Section */
  .footer__contact {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .footer__contact-item {
    margin: 0;
  }

  .footer__contact-label {
    font-size: 14px;
    line-height: 1.43;
    color: #FFFFFF;
  }

  .footer__contact a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.43;
    transition: color 0.2s ease;
  }

  .footer__contact a:hover {
    color: #F9B900;
  }

  /* Newsletter Section */
  .footer__newsletter {
    flex: 0 0 250px;
  }

  /* EU Financing Column */
  .footer__eu-column {
    flex: 0 0 185px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .footer__eu-logos {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .footer__eu-logo {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer__eu-logo img {
    max-width: 100%;
    height: auto;
    width: 100%;
  }

  .footer__newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .footer__newsletter-input {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    background: #FFFFFF;
    border: none;
    border-radius: 126px;
    font-size: 20px;
    color: #1A1B18;
    font-family: var(--font-alternate);
  }

  .footer__newsletter-input::placeholder {
    color: #666666;
    font-family: var(--font-alternate);
  }

  .footer__newsletter-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
  }

  .footer__newsletter-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 0;
    flex-shrink: 0;
  }

  .footer__newsletter-checkbox label {
    font-size: 12px;
    line-height: 1.33;
    color: #FFFFFF;
    cursor: pointer;
  }

  .footer__newsletter-btn {
    width: 100%;
    height: 48px;
    background: transparent;
    border: 1px solid #F9B900;
    border-radius: 126px;
    color: #F9B900;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }

  .footer__newsletter-btn:hover {
    background: #E6A600;
    color: #1A1B18;
  }

  /* Bottom Section */
  .footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 32px;
  }

  /* Legal Info */
  .footer__legal-info {
    flex: 1;
  }

  .footer__copyright,
  .footer__development {
    font-size: 12px;
    line-height: 1.33;
    color: #FFFFFF;
    margin: 0 0 8px 0;
  }

  .footer__development:last-child {
    margin-bottom: 0;
  }

  /* Social and CTA */
  .footer__social-cta {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }

  .footer__social {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .footer__social-text {
    font-size: 14px;
    font-weight: 700;
    color: #F9B900;
    text-transform: uppercase;
  }

  .footer__social-icons {
    display: flex;
    gap: 8px;
  }

  .footer__social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: #FFFFFF;
    transition: color 0.2s ease;
  }

  .footer__social-icons a:hover {
    color: #F9B900;
  }

  .footer__cta-btn {
    background: #F9B900;
    color: #1A1B18;
    padding: 12px 24px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 0;
    transition: background-color 0.2s ease;
  }

  .footer__cta-btn:hover {
    background: #E6A600;
  }

  /* EU Logos */
  .footer__eu-logos {
    display: flex;
    gap: 24px;
    align-items: center;
  }

  .footer__eu-logo,
  .footer__plan-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
  }

  .footer__eu-logo span,
  .footer__plan-logo span {
    font-size: 10px;
    line-height: 1.2;
    color: #FFFFFF;
  }

  /* Responsive Design */
  @media (max-width: 1400px) {
    .footer__container {
      padding: 0 64px;
    }
    
    .footer__links-container {
      gap: 24px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
    }
    
    .footer__column {
      flex: 0 0 160px;
    }
    
    .footer__newsletter {
      flex: 0 0 320px;
    }
  }

  @media (max-width: 768px) {
    .footer {
      padding: 60px 0 40px 0;
    }
    
    .footer__container {
      padding: 0 20px;
      gap: 40px;
    }
    
    .footer__main {
      flex-direction: column;
      gap: 40px;
    }
    
    .footer__logo {
      flex: none;
      align-self: center;
    }
    
    .footer__links-container {
      flex-direction: column;
      gap: 32px;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
    }
    
    .footer__column {
      flex: none;
    }
    
    .footer__newsletter {
      flex: none;
    }
    
    .footer__bottom {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 24px;
    }
    
    .footer__social-cta {
      align-items: center;
    }
    
    .footer__eu-logos {
      flex-direction: column;
      gap: 16px;
    }
  }

  @media (max-width: 480px) {
    .footer__container {
      padding: 0 16px;
    }
    
    .footer__social {
      flex-direction: column;
      gap: 8px;
    }
    
    .footer__eu-logo,
    .footer__plan-logo {
      flex-direction: column;
      text-align: center;
      gap: 4px;
    }
  }
/* Fix para que sticky funcione con shopify-section grid */
  .shopify-section-header,
  .shopify-section-group-header-group {
    position: sticky !important;
    top: 0;
    z-index: 1000;
    display: block !important;
    grid-template-columns: 1fr !important;
  }

  .header {
    background-color: var(--header-background, #1A1B18);
    color: var(--header-text-color, #ffffff);
    height: var(--header-height, 125px);
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
  }

  /* Asegurar que el body no tenga overflow hidden */
  body {
    overflow-x: hidden;
    overflow-y: auto;
  }

  .header__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1476px; /* Ancho específico del container según Figma */
    margin: 0 auto;
    padding: 0 var(--header-padding, 126px);
    height: 100%;
    position: relative;
  }

  /* Logo and Navigation Section */
  .header__logo-nav {
    display: flex;
    align-items: center;
    gap: 82px;
    flex: 1;
    max-width: 658px; /* Ancho específico según Figma */
  }

  .header__logo {
    flex-shrink: 0;
  }

  .header__logo-link,
  .header__logo-text {
    display: block;
    text-decoration: none;
    color: inherit;
  }

  .header__logo-image {
    width: auto;
    height: 61px;
    max-width: 145px;
    object-fit: contain;
  }

  .header__logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--header-accent-color, #F9B900);
  }

  /* Navigation */
  .header__navigation {
    flex-grow: 1;
  }

  .header__nav-list {
    display: flex;
    align-items: center;
    gap: 25px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .header__nav-item {
    margin: 0;
  }

  .header__nav-link {
    display: block;
    padding: 8px 0;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    color: var(--header-text-color, #ffffff);
    font-family: var(--font-alternate);
    transition: color 0.2s ease;
    position: relative;
  }

  .header__nav-link:hover,
  .header__nav-link--active {
    color: var(--header-accent-color, #F9B900);
  }

  /* User Actions Section */
  .header__user-actions {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-shrink: 0;
    width: 453px; /* Ancho específico según Figma */
    justify-content: flex-end;
  }

  .header__user-icons {
    display: flex;
    align-items: center;
    gap: 24px;
    width: 120px; /* Ancho específico según Figma */
  }

  .header__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: var(--header-text-color, #ffffff);
    text-decoration: none;
    transition: color 0.2s ease;
    position: relative;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
  }

  a.header__icon.header__icon--search {
    width: 19px;
  }

  .header__icon:hover {
    color: var(--header-accent-color, #F9B900);
  }

  .header__icon svg {
    width: 100%;
    height: 100%;
  }

  .header__cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--header-accent-color, #F9B900);
    color: var(--header-background, #1A1B18);
    font-size: 12px;
    font-weight: bold;
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
  }

  /* Language Selector */
  .header__language-selector {
    position: relative;
    width: 61px; /* Ancho específico según Figma */
    height: 22px;
  }

  .localization-form__select {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--header-text-color, #ffffff);
    height: 100%;
  }

  .localization-form__current {
    font-weight: 500;
  }

  .localization-form__separator {
    opacity: 0.6;
  }

  .localization-form__option {
    background: transparent;
    border: none;
    color: var(--header-text-color, #ffffff);
    font-size: 14px;
    cursor: pointer;
  }

  .localization-form__option:focus {
    outline: 2px solid var(--header-accent-color, #F9B900);
    outline-offset: 2px;
  }

  /* CTA Button */
  .header__cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--header-cta-background, #F9B900);
    color: var(--header-cta-text, #1A1B18);
    font-family: var(--font-alternate);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    padding: 16px 48px;
    border-radius: 82px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    min-width: 208px;
    height: 59px;
  }

  .header__cta-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(249, 185, 0, 0.3);
  }

  /* Mobile Menu Button */
  .header__mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 4px;
  }

  .header__hamburger-line {
    width: 20px;
    height: 2px;
    background-color: var(--header-text-color, #ffffff);
    transition: all 0.3s ease;
    transform-origin: center;
  }

  .header__mobile-menu-toggle[aria-expanded="true"] .header__hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .header__mobile-menu-toggle[aria-expanded="true"] .header__hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .header__mobile-menu-toggle[aria-expanded="true"] .header__hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  /* Mobile Navigation */
  .header__navigation--mobile {
    display: none;
    position: fixed;
    top: var(--header-height, 125px);
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--header-background, #1A1B18);
    z-index: 99;
    overflow-y: auto;
  }

  .header__navigation--mobile.is-open {
    display: block;
  }

  .header__mobile-nav-content {
    padding: 40px 20px;
    max-width: 1476px;
    margin: 0 auto;
  }

  .header__mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 40px;
  }

  .header__mobile-nav-item {
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .header__mobile-nav-link {
    display: block;
    padding: 20px 0;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    color: var(--header-text-color, #ffffff);
    transition: color 0.2s ease;
  }

  .header__mobile-nav-link:hover,
  .header__mobile-nav-link--active {
    color: var(--header-accent-color, #F9B900);
  }

  .header__mobile-user-actions {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .header__mobile-language-selector {
    width: auto;
  }

  .header__mobile-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--header-cta-background, #F9B900);
    color: var(--header-cta-text, #1A1B18);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    padding: 16px 48px;
    border-radius: 82px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    min-width: 200px;
    height: 59px;
  }

  .header__mobile-cta-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(249, 185, 0, 0.3);
  }

  /* Mobile Responsive */
  @media screen and (max-width: 1200px) {
    .header__content {
      padding: 0 var(--page-margin, 20px);
      gap: 20px;
    }
    
    .header__logo-nav {
      gap: 40px;
    }
    
    .header__nav-list {
      gap: 24px;
    }
    
    .header__user-actions {
      gap: 16px;
      width: auto;
    }
  }

  @media screen and (max-width: 990px) {
    .header__mobile-menu-toggle {
      display: flex;
      order: -1;
    }

    .header__content {
      gap: 20px;
      justify-content: space-between;
    }
    
    .header__navigation--desktop {
      display: none;
    }

    .header__logo-nav {
      flex: 1;
      justify-content: center;
      max-width: none;
    }

    .header__user-actions {
      width: auto;
      gap: 16px;
    }

    .header__user-icons {
      width: auto;
    }
    
    .header__cta-button {
      min-width: 150px;
      padding: 12px 24px;
      font-size: 14px;
    }

    .header__language-selector {
      display: none;
    }
  }

  @media screen and (max-width: 768px) {
    .header {
      height: var(--header-height, 80px);
    }

    .header__navigation--mobile {
      top: var(--header-height, 80px);
    }
    
    .header__content {
      gap: 16px;
    }
    
    .header__logo-image {
      height: 40px;
      max-width: 100px;
    }
    
    .header__user-icons {
      gap: 12px;
    }

    .header__icon {
      width: 20px;
      height: 20px;
    }
    
    .header__cta-button {
      display: none;
    }

    .header__mobile-nav-content {
      padding: 30px 20px;
    }

    .header__mobile-nav-link {
      font-size: 16px;
      padding: 16px 0;
    }
  }

  @media screen and (max-width: 480px) {
    .header__content {
      padding: 0 16px;
    }

    .header__logo-image {
      height: 35px;
      max-width: 90px;
    }

    .header__user-icons {
      gap: 8px;
    }

    .header__icon {
      width: 18px;
      height: 18px;
    }

    .header__mobile-nav-content {
      padding: 24px 16px;
    }

    .header__mobile-cta-button {
      min-width: 180px;
      padding: 14px 32px;
      font-size: 14px;
      height: 50px;
    }
  }
.welcome {
    display: grid;
    grid-template-columns: var(--content-grid);
    background-color: #f6f6f7;
    padding: 72px 0;
  }

  .welcome-content {
    grid-column: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 0 24px;
  }

  .welcome-description {
    max-width: 80ch;
    line-height: 1.4;
    margin-top: 1.5rem;
  }

  .icon {
    width: 300px;
  }

  .highlights {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 50px;
  }

  @media (max-width: 1100px) {
    .highlights {
      grid-template-columns: 1fr;
    }
  }

  .highlight {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 24px;
    border-radius: 8px;
    background-color: #eef3ff;
    color: rgb(92, 95, 98);
    line-height: 1.4;
  }

  .highlight > * + * {
    margin-top: 1rem;
  }

  .highlight h3 {
    font-size: 1rem;
    color: rgb(32, 34, 35);
  }

  .highlight-description {
    flex: 1 1;
  }

  .highlight a {
    display: flex;
    width: fit-content;
    background-color: rgb(250, 251, 251);
    box-shadow: rgba(0, 0, 0, 0.2) 0px -3px 0px 0px inset, rgba(255, 255, 255, 0.9) 0px 2px 0px 0px inset;
    border: 1px solid rgb(140, 145, 150);
    border-radius: 4px;
    color: rgb(92, 95, 98);
    padding: 3px 10px 5px;
    text-decoration: none;
  }
.hero-secundario {
    width: 100%;
    height: 560px;
    position: relative;
    overflow: hidden;
  }

  .hero-secundario__container {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    position: relative;
  }

  .hero-secundario__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .hero-secundario__bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .hero-secundario__content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    max-width: 1728px;
  }

  /* Hero Text Container - 601x210px at x:126, y:175 */
  .hero-secundario__text-container {
    position: absolute;
    left: 126px;
    top: 175px;
    width: 601px;
    height: 210px;
  }

  .hero-secundario__text {
    display: flex;
    flex-direction: column;
    gap: 48px;
    width: 100%;
    height: 100%;
  }

  /* Title and Subtitle Container - 601x103px */
  .hero-secundario__title-subtitle {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 601px;
    height: 103px;
  }

  /* Hero Title - 601x53px */
  .hero-secundario__title {
    width: 601px;
    height: 53px;
    color: #FFFFFF;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
    text-align: left;
  }

  /* Hero Subtitle - 601x34px */
  .hero-secundario__subtitle {
    width: 601px;
    height: 34px;
    color: #FFFFFF;
    font-family: var(--font-body-family);
    font-size: 24px;
    font-weight: 400;
    line-height: 34px;
    margin: 0;
    text-align: left;
  }

  .hero-secundario__subtitle-highlight {
    color: #EE7821;
    font-family: var(--font-body-family);
    font-weight: 400;
  }

  /* CTA Button - 300x59px */
  .hero-secundario__cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 59px;
    background-color: #644A09;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 82px;
    transition: all 0.3s ease;
    text-align: center;
  }

  .hero-secundario__cta-btn:hover {
    background-color: #7A5A0B;
    transform: translateY(-2px);
  }

  /* Hero Product Image - 726x464px at x:876, y:48 */
  .hero-secundario__image-container {
    position: absolute;
    right: 126px;
    top: 48px;
    width: 726px;
    height: 464px;
  }

  .hero-secundario__product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  /* Tablet Responsive - 768px */
  @media (max-width: 768px) {
    .hero-secundario {
      height: 480px;
    }

    .hero-secundario__container {
      padding: 0 32px;
    }

    .hero-secundario__text-container {
      left: 32px;
      top: 60px;
      width: calc(100% - 64px);
      max-width: 500px;
      height: auto;
    }

    .hero-secundario__title-subtitle {
      width: 100%;
      height: auto;
    }

    .hero-secundario__title {
      width: 100%;
      height: auto;
      font-size: 36px;
    }

    .hero-secundario__subtitle {
      width: 100%;
      height: auto;
      font-size: 20px;
    }

    .hero-secundario__cta-btn {
      width: 280px;
      height: 56px;
      font-size: 16px;
    }

    .hero-secundario__image-container {
      right: 32px;
      top: 60px;
      width: 45%;
      height: 60%;
    }
  }

  /* Mobile Responsive - 480px */
  @media (max-width: 480px) {
    .hero-secundario {
      height: 600px;
    }

    .hero-secundario__content {
      flex-direction: column;
    }

    .hero-secundario__text-container {
      position: relative;
      left: 0;
      top: 0;
      width: 100%;
      padding: 40px 20px 0;
      text-align: center;
    }

    .hero-secundario__text {
      gap: 32px;
    }

    .hero-secundario__title-subtitle {
      width: 100%;
      text-align: center;
    }

    .hero-secundario__title {
      width: 100%;
      font-size: 28px;
      text-align: center;
    }

    .hero-secundario__subtitle {
      width: 100%;
      font-size: 18px;
      text-align: center;
    }

    .hero-secundario__cta-btn {
      width: 260px;
      height: 52px;
      font-size: 16px;
      margin: 0 auto;
    }

    .hero-secundario__image-container {
      position: relative;
      right: 0;
      top: 0;
      width: 100%;
      height: 300px;
      margin-top: 20px;
    }
  }
.hero {
    position: relative;
    width: 100%;
    height: 84vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .hero__container {
    position: relative;
    width: 100%;
    max-width: var(--page-width, 110rem);
    margin: 0 auto;
    padding: 0 var(--page-margin, 2rem);
  }

  .hero__content {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    height: 100%;
    padding-top: 126px; /* Espaciado desde arriba según Figma */
  }

  .hero__text-container {
    width: 597px; /* Ancho exacto según Figma */
    max-width: 100%;
    margin-bottom: 25vh;
  }

  .hero__text-content {
    margin-bottom: 48px;
  }

  .hero__title {
    font-family: var(--font-heading); /* BlogScript */
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--hero-title-color);
    margin: 0 0 16px 0; /* 16px entre título y subtítulo según Figma */
    max-width: 597px;
    word-spacing: 0.1em; /* Espaciado entre palabras */
  }

  .hero__title-highlight {
    color: var(--hero-title-highlight-color);
    font-family: var(--font-heading); /* Mantener BlogScript */
  }

  .hero__subtitle {
    font-family: var(--font-alternate);
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--hero-subtitle-color);
    margin: 0;
    max-width: 597px;
    opacity: 0.9;
    word-spacing: 0;
  }

  .hero__subtitle-highlight {
    color: var(--hero-subtitle-highlight-color);
    font-family: var(--font-alternate);
  }

  .hero__cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--hero-button-bg);
    color: var(--hero-button-text);
    font-family: var(--font-alternate);
    font-size: var(--hero-button-size);
    font-weight: 700;
    text-decoration: none;
    padding: 16px 48px;
    border-radius: 82px;
    transition: all 0.3s ease;
    height: 59px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.05em;
  }

  .hero__cta-button:hover {
    background-color: var(--hero-button-hover-background, #E6A600);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(249, 185, 0, 0.4);
  }

  .hero__cta-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 15px rgba(249, 185, 0, 0.3);
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .hero {
      height: 60vh;
      min-height: 600px;
    }

    .hero__content {
      padding-top: 60px;
    }

    .hero__text-container {
      width: 100%;
      max-width: 500px;
    }

    .hero__title {
      font-size: clamp(2rem, 6vw, 3rem);
    }

    .hero__subtitle {
      font-size: clamp(1rem, 4vw, 1.25rem);
    }

    .hero__cta-button {
      width: 100%;
      max-width: 300px;
    }

    .hero__text-content {
      margin-bottom: 40px;
    }
  }

  @media (max-width: 480px) {
    .hero {
      height: 80vh;
      min-height: 500px;
    }

    .hero__content {
      padding-top: 40px;
      align-items: center;
      justify-content: center;
    }

    .hero__text-content {
      margin-bottom: 30px;
      text-align: center;
    }

    .hero__cta-button {
      width: 100%;
      max-width: 100%;
    }
  }
.product {
    background: #fff;
  }

  .product__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: minmax(350px, 560px) 1fr;
    gap: 60px;
    align-items: start;
  }

  /* Product Images */
  .product__images {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .product__main-image {
    position: relative;
    width: 100%;
    height: 400px;
    background: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
  }

  .product__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .product__zoom-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .product__thumbnails {
    display: flex;
    gap: 12px;
  }

  .product__thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
  }

  .product__thumbnail.active {
    border-color: #F9B900;
  }

  .product__thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Product Info */
  .product__info {
    min-width: 0;
    width: 100%;
  }

  .product__title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: #1A1B18;
    margin: 0 0 24px;
    text-transform: uppercase;
  }

  .product__features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
  }

  .product__feature {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #D9D9D9;
    border-radius: 20px;
    font-family: var(--font-alternate);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: #6B6B6B;
    height: 40px;
    white-space: nowrap;
  }

  .product__feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }

  .product__feature-icon svg {
    width: 100%;
    height: 100%;
  }

  .product__description {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    color: #666;
    margin-bottom: 32px;
  }

  /* Product Options */
  .product__options {
    margin-bottom: 32px;
    width: 100%;
  }

  .product__option-label {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: #1A1B18;
    margin-bottom: 12px;
    display: block;
  }

  .product__selects {
    display: flex;
    gap: 12px;
    width: 100%;
  }

  .product__select {
    flex: 1;
    min-width: 0;
    height: 48px;
    padding: 0 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.3s ease;
  }

  .product__select:focus {
    outline: none;
    border-color: #F9B900;
  }

  .product__select.placeholder {
    color: #999;
  }

  .product__select option {
    color: #1A1B18;
  }

  .product__select option[value=""] {
    color: #999;
  }

  /* Purchase Section */
  .product__purchase {
    border-top: 1px solid #eee;
    padding-top: 32px;
  }

  .product__price-section {
    margin-bottom: 24px;
  }

  .product__price {
    font-family: var(--font-alternate);
    font-size: 32px;
    font-weight: 600;
    color: #1A1B18;
    line-height: 1;
  }

  .product__price-note {
    font-family: var(--font-body);
    font-size: 14px;
    color: #666;
    margin-top: 4px;
  }

  .product__actions {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
  }

  .product__add-to-cart {
    flex: 1;
    height: 48px;
    background: #F9B900;
    border: none;
    border-radius: 8px;
    font-family: var(--font-alternate);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #1A1B18;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .product__add-to-cart:hover:not(:disabled) {
    background: #e5a800;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(249, 185, 0, 0.3);
  }

  .product__add-to-cart:disabled {
    background: #E5E5E5;
    color: #999;
    cursor: not-allowed;
    opacity: 0.6;
  }

  .product__actions:has(.product__download-btn) .product__add-to-cart {
    flex: 1;
  }

  .product__actions:not(:has(.product__download-btn)) .product__add-to-cart {
    width: 100%;
  }

  .product__download-btn {
    height: 48px;
    padding: 0 20px;
    background: #1A1B18;
    border: none;
    border-radius: 8px;
    font-family: var(--font-alternate);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
  }

  .product__business-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 14px;
  }

  .product__business-contact a {
    color: #1A1B18;
    text-decoration: underline;
  }

  .product__info-btn {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 12px;
    cursor: pointer;
  }

  /* Product Details */
  .product__details {
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 0 24px;
  }

  .product__details-container {
    margin-bottom: 40px;
  }

  .product__detail-section {
    border-bottom: 1px solid #eee;
  }

  .product__detail-toggle {
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: #1A1B18;
    cursor: pointer;
    text-align: left;
  }

  .product__detail-toggle svg {
    transition: transform 0.3s ease;
  }

  .product__detail-toggle.active svg {
    transform: rotate(180deg);
  }

  .product__detail-content {
    padding: 0 0 20px;
    display: none;
  }

  .product__detail-content.active {
    display: block;
  }

  .product__detail-content p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
  }

  /* Preparation Section */
  .product__preparation {
    background: #F5E6A3;
    border-radius: 16px;
    padding: 32px;
  }

  .product__preparation-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: #1A1B18;
    text-transform: uppercase;
    margin: 0 0 24px;
  }

  .product__preparation-list {
    margin: 0;
    padding-left: 24px;
    list-style: none;
    counter-reset: preparation-counter;
  }

  .product__preparation-item {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: #1A1B18;
    margin-bottom: 12px;
    position: relative;
    counter-increment: preparation-counter;
  }

  .product__preparation-item:last-child {
    margin-bottom: 0;
  }

  .product__preparation-item::before {
    content: counter(preparation-counter) ". ";
    font-weight: 700;
    color: #1A1B18;
    margin-right: 8px;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .product__container {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .product__title {
      font-size: 24px;
    }

    .product__selects {
      flex-direction: column;
    }

    .product__actions {
      flex-direction: column;
    }

    .product__preparation {
      padding: 24px;
    }

    .product__preparation-list {
      padding-left: 20px;
    }

    .product__preparation-item {
      font-size: 15px;
    }
  }
.productos-home {
    padding: 80px 0;
    background: #fff;
  }

  .productos-home__container {
    max-width: 1476px;
    margin: 0 auto;
    padding: 0 126px;
  }

  .productos-home__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    gap: 40px;
  }

  .productos-home__title-wrapper {
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .productos-home__arrow {
    width: 85px;
    height: 83px;
    flex-shrink: 0;
    margin-top: 47px;
    margin-right: -44px;
  }

  .productos-home__titles {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .productos-home__title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    line-height: 54px;
    color: #1A1B18;
    margin: 0;
    text-transform: uppercase;
  }

  @media (max-width: 1400px) {
    .productos-home__title {
      font-size: 28px;
      line-height: 1.4;
    }
  }

  .productos-home__title--highlight {
    color: #980000;
  }

  .productos-home__subtitle {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 400;
    line-height: 1.4;
    color: #1A1B18;
    margin: 8px 0 0;
    margin-left: 40px;
  }

  @media (max-width: 1400px) {
    .productos-home__subtitle {
      font-size: 24px;
      line-height: 1.2;
    }
  }

  .productos-home__badge {
    background: rgba(249, 185, 0, 0.20);
    padding: 24px;
    border-radius: 8px;
    max-width: 380px;
  }

  .productos-home__badge-title {
    font-family: var(--font-alternate);
    font-size: 20px;
    font-weight: 600;
    color: #1A1B18;
    text-transform: uppercase;
    margin-bottom: 8px;
  }

  .productos-home__badge-text {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.5;
    color: #1A1B18;
    margin: 0;
  }

  .product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .productos-home__cta {
    display: flex;
    justify-content: center;
    margin-top: 48px;
  }

  .btn-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 48px;
    height: 48px;
    background: transparent;
    border: 2px solid #644A09;
    border-radius: 82px;
    color: #644A09;
    font-family: var(--font-alternate);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
  }

  @media (max-width: 1300px) {
    .btn-view-all {
      font-size: 14px;
    }
  }

  .btn-view-all:hover {
    background: #644A09;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(100, 74, 9, 0.3);
  }

  @media (max-width: 1300px) {
    .productos-home__arrow {
      margin-top: 88px;
    }
  }

  

  @media (max-width: 1199px) {
    .productos-home__container {
      padding: 0 60px;
    }

    .product-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    .productos-home__badge {
      max-width: 100%;
    }

    .productos-home__arrow {
      margin-top: 40px;
    }
    
  }

  @media (max-width: 767px) {
    .productos-home {
      padding: 60px 0;
    }

    .productos-home__container {
      padding: 0 24px;
    }

    .productos-home__header {
      margin-bottom: 40px;
      flex-direction: column;
    }

    .productos-home__arrow {
      display: none;
    }

    .productos-home__title {
      font-size: 28px;
      text-align: center;
    }

    .productos-home__subtitle {
      font-size: 18px;
      display: none;
    }

    .product-grid {
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .btn-view-all {
      width: 100%;
      max-width: 300px;
    }
  }
.promociones {
    width: 100%;
    background-color: var(--color-background, #FFFFFF);
    padding: 63px 0;
  }

  .promociones__container {
    max-width: 1728px;
    margin: 0 auto;
    padding: 0 126px;
  }

  .promociones__content {
    min-height: 371px;
    background-color: #1A1B18;
    border-radius: 24px;
    padding: 48px;
    margin: 0 auto;
  }

  .promociones__row {
    display: grid;
    grid-template-columns: 3fr 5fr;
    align-items: center;
    min-height: 275px;
  }

  /* Sección de Texto */
  .promociones__text {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .promociones__text-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 185px;
  }

  .promociones__icon {
    width: 54px;
    height: 54px;
    flex-shrink: 0;
  }

  .promociones__icon-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .promociones__icon--default svg {
    width: 100%;
    height: 100%;
  }

  .promociones__text-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
    height: 115px;
  }

  .promociones__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    color: #F9B900;
    font-family: var(--font-body);
    margin: 0;
    height: 30px;
  }

  @media (max-width: 1400px) {
    .promociones__title {
      font-size: 20px;
      line-height: 1.2;
    }
  }

  .promociones__subtitle {
    font-size: 42px;
    font-weight: 400;
    line-height: 1.47;
    color: #FFFFFF;
    margin: 0;
    height: 53px;
    font-family: var(--font-heading);
  }

  @media (max-width: 1400px) {
    .promociones__subtitle {
      font-size: 36px;
      line-height: 1.2;
    }
  }

  .promociones__cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 48px;
    background-color: #F9B900;
    color: #1A1B18;
    font-size: 18px;
    font-family: var(--font-alternate);
    font-weight: 600;
    text-decoration: none;
    border-radius: 82px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    min-width: 65%;
  }

  @media (max-width: 1400px) {
    .promociones__cta-button {
      font-size: 16px;
    }
  }

  .promociones__cta-button:hover {
    background-color: #E6A600;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(249, 185, 0, 0.3);
  }

  /* Sección de Imagen */
  .promociones__image {
    position: relative;
    width: 100%;
    height: 275px;
    border-radius: 24px;
    overflow: hidden;
    flex-shrink: 0;
  }

  .promociones__image-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
  }

  /* Overlay gradiente sobre la imagen */
  .promociones__image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
      90deg,
      rgba(26, 27, 24, 0) 0%,
      rgba(26, 27, 24, 0.9) 100%
    );
    border-radius: 24px;
    pointer-events: none;
  }

  /* Badge de Descuento */
  .promociones__discount-badge {
    position: absolute;
    bottom: 24px; /* Posición según Figma: 275-149-102 = 24px */
    right: 44px; /* Posición según Figma: 798-626-172+44 = 44px */
    width: 172px; /* Ancho exacto según Figma */
    height: 102px; /* Alto exacto según Figma */
    background-color: #990000; /* Color rojo según Figma */
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
  }

  .promociones__discount-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px; /* Gap según Figma */
    width: 86px; /* Ancho del contenido según Figma */
    height: 58px;
  }

  .promociones__discount-amount {
    display: flex;
    align-items: baseline;
    height: 58px;
  }

  .promociones__discount-number {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    color: #FFFFFF;
    width: 66px; /* Ancho exacto según Figma */
  }

  .promociones__discount-symbol {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    color: #FFFFFF;
    width: 20px; /* Ancho exacto según Figma */
    margin-top: 17px; /* Ajuste vertical según Figma */
  }

  .promociones__discount-duration {
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    color: #FFFFFF;
    text-align: center;
    width: 108px; /* Ancho exacto según Figma */
    height: 24px;
    text-transform: uppercase;
  }

  /* Responsive Design */
  @media (max-width: 1200px) {
    .promociones__container {
      padding: 0 var(--page-margin, 20px);
    }
    
    .promociones__content {
      width: 100%;
      max-width: 1200px;
    }
    
    .promociones__row {
      gap: 60px;
    }
    
    .promociones__text {
      width: 350px;
    }
    
    .promociones__image {
      width: 600px;
    }
  }

  @media (max-width: 990px) {
    .promociones__content {
      height: auto;
      padding: 40px 30px;
    }
    
    .promociones__row {
      gap: 40px;
      height: auto;
      text-align: center;
      grid-template-columns: 1fr;
    }
    
    .promociones__text {
      width: 100%;
      height: auto;
      align-items: center;
    }

    .promociones__text-container {
      flex-direction: row;
      height: auto;
    }
    
    .promociones__image {
      width: 100%;
      max-width: 500px;
      height: 250px;
    }
    
    .promociones__discount-badge {
      bottom: 20px;
      right: 20px;
      width: 140px;
      height: 80px;
    }
    
    .promociones__discount-number {
      font-size: 36px;
    }
    
    .promociones__discount-symbol {
      font-size: 18px;
    }
  }

  @media (max-width: 768px) {
    .promociones {
      padding: 40px 0;
    }
    
    .promociones__content {
      padding: 30px 20px;
    }
    
    .promociones__title {
      font-size: 20px;
      text-align: left;
    }
    
    .promociones__subtitle {
      font-size: 32px;
      text-align: left;
    }
    
    .promociones__cta-button {
      width: 100%;
      max-width: 100%;
      font-size: 16px;
    }
    
    .promociones__image {
      height: 200px;
    }
    
    .promociones__discount-badge {
      width: 120px;
      height: 70px;
    }
    
    .promociones__discount-number {
      font-size: 28px;
    }
    
    .promociones__discount-symbol {
      font-size: 16px;
    }
    
    .promociones__discount-duration {
      font-size: 10px;
    }
  }
.search-results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  .search-results .prev,
  .search-results .page,
  .search-results .next {
    grid-column: 1 / -1;
  }

/* CSS from block stylesheet tags */
.group {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    width: 100%;
  }

  .group--horizontal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--padding);
  }

  .group--vertical {
    flex-direction: column;
    align-items: var(--alignment);
    padding: var(--padding) 0;
  }
.text {
    text-align: var(--text-align);
  }
  .text--title {
    font-size: 2rem;
    font-weight: 700;
  }
  .text--subtitle {
    font-size: 1.5rem;
  }

/* CSS from snippet stylesheet tags */
.image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
  }

  .image > img {
    width: 100%;
    height: auto;
  }