
/* NOSOTROS-- */
.about-section {
    position: relative;
    background: white; /* fondo diferenciado */
    color: var(--color-text);
    padding: 5rem 6rem;
    overflow: hidden;
    border-radius: 20% 0% 0% 0%  ;
    margin-top: -10rem;
    
  }
  

  /* Contenido interno */
  .about-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 70vh;
    
  }
  
  .about-text {
    flex: 1;
    
  }
  .about-video {
    flex: 1; 
  }
  .about-video img{
    width: 100%;
    border-radius: 22px 0px 22px 0px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  }
  /* .about-video .video-wrapper {
    aspect-ratio: 16 / 9;
    width: 100%;
    /* Asegura caja visible */
    /* display: block;
  } */
   
  /* .about-video .video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 22px 0px 22px 0px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  } */
  
  
  
  .about-text h2 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    margin-bottom: 0.5rem;
    color: var(--color-primary);
  }
  
  .about-text h3 {
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-semibold);
    margin-bottom: 1rem;
    color: var(--color-primary);
  }
  
  .about-text p {
    font-size: var(--font-size-md);
    color: var(--color-marron-dark);
    line-height: 1.6;
    margin: 1rem 0;
  
  }

  .about-text strong{
    color: var(--color-primary);

  }
/* NOSOTROS CLS -- */

  /* SERVICIOS INICIO */
  .featured-services {
    padding: 5rem 0;
    background: var(--color-bg-dark); /* tono claro predominante */
    border-radius: 0 20% 0 0;
  }
  
  .services__heading {
    text-align: center;
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    margin-bottom: 1rem;
  }
  
  .services__intro {
    text-align: center;
    font-size: var(--font-size-md);
    color: var(--color-text);
    margin-bottom: 3rem;
  }
  .services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .service-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .service-card__media img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .service-card__body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-grow: 1;
  }
  
  .service-card__title {
    font-size: 1.3rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
  }
  
  .service-card__desc {
    font-size: var(--font-size-sm);
    line-height: 1.6;
    color: var(--color-marron-dark);
    flex-grow: 1;
  }
  
  /* Botón global dentro del card */
  .service-card .btn {
    align-self: flex-start; /* evita que ocupe todo el ancho */
  }
  
  /* Footer debajo de los cards */
  .services__footer {
    text-align: center;
    margin-top: 3rem;
  }
  .services__footer p {
    font-size: var(--font-size-md);
    color: var(--color-primary);
  }
  .services__footer .btn {
    margin-left: 0.5rem;
  }
  /* FIN SERVICIO INCIO */


  /* CLIENTES */
  
.clients {
    padding: 4rem 0;
    background: white; /* tono claro predominante */
  }
  
  .clients__heading {
    text-align: center;
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    margin-bottom: 2rem;
  }
  
  .clients__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    align-items: center;
  }
  
  .client {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .client:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.10);
  }
  
  .client img {
    max-width: 300px;     /* ancho máximo del logo */
    max-height: 80px;     /* altura máxima del logo */
    width: 100%;
    height: auto;
    object-fit: contain;  /* mantiene proporciones del logo */
    filter: grayscale(100%) contrast(1);   /* aspecto sobrio */
    opacity: 0.9;
    transition: filter 0.2s ease, opacity 0.2s ease;
  }
  
  .client:hover img {
    filter: none;         /* color al hover */
    opacity: 1;
  }
  
  /* Responsive */
  @media (max-width: 1200px) {
    .clients__grid { grid-template-columns: repeat(4, 1fr); }
  }
  @media (max-width: 768px) {
    .clients__grid { grid-template-columns: repeat(2, 1fr); }
    .client img { max-width: 120px; max-height: 50px; }
  }
  

  /* CLIENTES END */

  @media (max-width: 1000px) {
      .about-inner {
          flex-direction: column;
          text-align: left;
      }

      .about-video {
          width: 100%;

          /* SERVICIOS INDEX */
      }

      .services__grid {
        grid-template-columns: 1fr; /* apila en columna */
      }
      .service-card__media img {
        height: 200px; /* ajusta altura en móvil */
      }

  }
  /* Responsive */
  @media (max-width: 768px) {
    .about-section{
        border-radius: 0% 0% 0% 0%  ;
        margin-top: 0;
        padding: 4rem 1rem;
    }
    
    .about-inner {
      flex-direction: column;
      text-align: left;
    }
    .about-video {
      width: 100%;
    }

    .featured-services {

        border-radius: 0;
      }
  }
  