/* ========================================
       PAGE HEADER
    ======================================== */
    .page-header {
      background-color: #F5FAF7;
      padding-top: 50px;
      padding-bottom: 50px;
      text-align: center;
    }

    .breadcrumb-shepody {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-size: 0.9rem;
      color: #5B6A63;
      margin-bottom: 16px;
    }

    .breadcrumb-shepody a {
      color: #5B6A63;
      transition: color 0.3s ease;
    }

    .breadcrumb-shepody a:hover {
      color: #27B97A;
    }

    .breadcrumb-shepody .sep {
      color: #DDEEE6;
    }

    .breadcrumb-shepody .current {
      color: #27B97A;
      font-weight: 600;
    }

    .page-header h1 {
      font-size: 2.5rem;
      font-weight: 800;
      color: #17251F;
      margin-bottom: 12px;
    }

    .page-header .page-subtitle {
      font-size: 1.05rem;
      color: #5B6A63;
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.7;
    }

    @media (max-width: 767.98px) {
      .page-header {
        padding-top: 35px;
        padding-bottom: 35px;
      }
      .page-header h1 {
        font-size: 1.9rem;
      }
      .page-header .page-subtitle {
        font-size: 0.95rem;
        padding: 0 15px;
      }
    }

    /* ========================================
       SOLUTIONS SECTION
    ======================================== */
    .solutions-section {
      background-color: #FFFFFF;
      padding-top: 60px;
      padding-bottom: 60px;
    }

    .solution-category {
      margin-bottom: 60px;
    }

    .solution-category:last-child {
      margin-bottom: 0;
    }

    /* Category Header Row */
    .category-header {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 30px;
      padding-bottom: 20px;
      border-bottom: 2px solid #DDEEE6;
    }

    .category-icon {
      width: 40px;
      height: 40px;
      min-width: 40px;
      border-radius: 8px;
      background-color: #27B97A;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #FFFFFF;
      font-size: 1.1rem;
    }

    .category-title-group {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .category-title {
      font-size: 1.4rem;
      font-weight: 700;
      color: #17251F;
      margin: 0;
      line-height: 1.3;
    }

    .category-subtitle {
      font-size: 0.9rem;
      font-weight: 500;
      color: #27B97A;
      margin: 0;
    }

    @media (max-width: 767.98px) {
      .category-header {
        gap: 12px;
        margin-bottom: 20px;
        padding-bottom: 15px;
      }
      .category-title {
        font-size: 1.15rem;
      }
      .category-subtitle {
        font-size: 0.8rem;
      }
    }

    /* Ingredient Item */
    .ingredient-item {
      background-color: #FFFFFF;
      /* border: 1px solid #f0f0f0; */
      /* border-radius: 10px; */
      padding: 16px;
      text-align: center;
      transition: all 0.3s ease;
      cursor: default;
    }

    .ingredient-img-link,
    .ingredient-name-link {
      display: block;
      text-decoration: none;
      color: inherit;
    }

    .ingredient-img-link:hover,
    .ingredient-name-link:hover {
      color: inherit;
      text-decoration: none;
    }

    .ingredient-item:hover {
      box-shadow: 0 6px 24px rgba(0,0,0,0.08);
      border-color: #DDEEE6;
      transform: translateY(-3px);
    }

    .ingredient-img-wrap {
      width: 100%;
      aspect-ratio: 1 / 1;
      background-color: transparent;
      border-radius: 10px;
      overflow: hidden;
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .ingredient-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      transition: transform 0.4s ease;
    }

    .ingredient-item:hover .ingredient-img-wrap img {
      transform: scale(1.05);
    }

    .ingredient-name {
      font-size: 0.95rem;
      font-weight: 600;
      color: #17251F;
      margin: 0;
    }

    /* CTA Banner */
    .cta-banner {
      background-color: #27B97A;
      padding-top: 70px;
      padding-bottom: 70px;
      text-align: center;
    }

    .cta-banner h2 {
      font-size: 2rem;
      font-weight: 700;
      color: #FFFFFF;
      margin-bottom: 12px;
    }

    .cta-banner p {
      font-size: 1rem;
      color: rgba(255,255,255,0.9);
      max-width: 550px;
      margin: 0 auto 30px;
      line-height: 1.7;
    }

    .cta-banner .cta-buttons {
      display: flex;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .btn-solicitar {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 30px;
      background-color: #FFFFFF;
      color: #27B97A;
      font-size: 1rem;
      font-weight: 600;
      border-radius: 8px;
      border: 2px solid #FFFFFF;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .btn-solicitar:hover {
      background-color: transparent;
      color: #FFFFFF;
      transform: translateY(-2px);
    }

    .btn-whatsapp-outline {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 30px;
      background-color: transparent;
      color: #FFFFFF;
      font-size: 1rem;
      font-weight: 600;
      border-radius: 8px;
      border: 2px solid rgba(255,255,255,0.6);
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .btn-whatsapp-outline:hover {
      background-color: rgba(255,255,255,0.1);
      border-color: #FFFFFF;
      color: #FFFFFF;
      transform: translateY(-2px);
    }

    @media (max-width: 767.98px) {
      .cta-banner {
        padding-top: 50px;
        padding-bottom: 50px;
      }
      .cta-banner h2 {
        font-size: 1.6rem;
      }
      .cta-banner .cta-buttons {
        flex-direction: column;
        align-items: center;
      }
      .btn-solicitar,
      .btn-whatsapp-outline {
        width: 100%;
        max-width: 320px;
        justify-content: center;
      }
    }

    /* Active nav item override for this page */
    .main-nav > li > a[href="soluciones.html"] {
      color: #27B97A;
      background-color: rgba(73, 179, 47, 0.06);
    }
