.about-page {
    max-width: 1100px;
    width: 100%;
    margin: 4rem auto;
    padding: 0 1.5rem;
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    box-sizing: border-box;
    overflow-x: hidden;
  }
  
  /* Hero section */
  .hero-about {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
  }
  
  .hero-text {
    flex: 1 1 320px;
    min-width: 280px;
  }
  
  .hero-text h2 {
    color: var(--accent);
    font-size: 2.4rem;
    margin-bottom: 1rem;
    word-break: break-word;
  }
  
  .hero-text p {
    color: var(--soft-text);
    font-size: 1.1rem;
    line-height: 1.6;
  }
  
  .hero-image {
    flex: 1 1 320px;
    text-align: center;
  }
  
  .hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 0 12px var(--shadow);
  }
  
  /* Cards de valores */
  .about-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.5rem;
    padding: 0 1rem;
    margin-bottom: 3rem;
    box-sizing: border-box;
  }
  
  .about-values .card {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 10px var(--shadow);
    transition: transform 0.3s ease;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
    text-align: left;
  }
  
  .about-values .card:hover {
    transform: translateY(-6px);
  }
  
  .about-values .card h3 {
    font-size: 1.3rem;
    color: var(--accent);
    margin-bottom: 0.8rem;
  }
  
  .about-values .card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--soft-text);
    flex-grow: 1;
    margin: 0;
  }
  
  /* Call to action */
  .about-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 0 1rem;
  }
  
  .about-cta h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: #111;
  }
  
  .about-cta p {
    font-size: 1.1rem;
    color: var(--soft-text);
    margin-bottom: 1.5rem;
  }
  
  .about-cta .btn {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 0 10px #ff007f55;
    background: var(--accent);
    color: #fff;
    border: none;
    cursor: pointer;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .hero-text h2 {
      font-size: 2rem;
    }
  
    .about-cta h3 {
      font-size: 1.4rem;
    }
  }
  