 .services-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
  }

  .services-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c6b47;
    margin-bottom: 40px;
  }

  .services-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .service-box {
    background: #fff;
    border-radius: 12px;
    padding: 28px 20px 24px;
    width: 200px;
    flex: 1 1 180px;
    max-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .service-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  }

  .service-box.active {
    border: 2px solid #e87722;
  }

  .service-icon {
    color: #2c6b47;
    margin-bottom: 16px;
    font-size: 2rem;
  }

  .service-box.active .service-icon {
    color: #e87722;
  }

  .service-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: #2c6b47;
    margin-bottom: 12px;
    line-height: 1.3;
  }

  .service-desc {
    font-size: 0.8rem;
    color: #555;
    line-height: 1.5;
    flex: 1;
    margin-bottom: 20px;
  }

  .boton2 {
    margin-top: auto;
  }

  .boton2 button {
    background: #2c6b47;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 9px 18px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .boton2 button:hover {
    background: #155a42;
    transform: scale(1.03);
  }

  .boton2 button i {
    font-size: 0.75rem;
  }

  /* ===================== MODAL ===================== */
  .modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(3px);
  }

  .modal-overlay.open {
    display: flex;
    animation: fadeIn 0.2s ease;
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  .modal-box {
    background: #132d26;
    border-radius: 16px;
    padding: 36px 32px 32px;
    max-width: 520px;
    width: 100%;
    color: #fff;
    position: relative;
    animation: slideUp 0.25s ease;
  }

  @keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }

  .modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: rgba(255,255,255,0.12);
    border: none;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
  }

  .modal-close:hover { background: rgba(255,255,255,0.25); }

  .modal-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
  }

  .modal-header-icon {
    font-size: 1.5rem;
    color: #4ade80;
  }

  .modal-header h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
  }

  .modal-desc {
    font-size: 0.88rem;
    color: #b0c9bf;
    line-height: 1.6;
    margin-bottom: 18px;
  }

  .modal-features {
    list-style: none;
    margin-bottom: 22px;
    padding: 0;
  }

  .modal-features li {
    font-size: 0.85rem;
    color: #d4e8e0;
    padding: 5px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
  }

  .modal-features li::before {
    content: '•';
    color: #4ade80;
    font-size: 1rem;
    line-height: 1.2;
    flex-shrink: 0;
  }

  .modal-info-grid {
    background: rgba(255,255,255,0.06);
    border-radius: 10px;
    padding: 16px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 22px;
  }

  .modal-info-item label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #7aaa95;
    font-weight: 700;
    margin-bottom: 4px;
  }

  .modal-info-item span {
    font-size: 0.9rem;
    font-weight: 700;
    color: #4ade80;
  }

  .modal-info-item.full { grid-column: 1 / -1; }

  .modal-cta {
    background: #22c55e;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 22px;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, transform 0.1s;
  }

  .modal-cta:hover {
    background: #16a34a;
    transform: scale(1.02);
  }