
  .servicios-overlay {
    background-color: rgba(31, 32, 32, 0.65); /* 🔶 Color base con transparencia */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
  }
  
  .servicios-contenido {
    color: #fff;
    text-align: center;
    max-width: 900px;
  }
  
  .servicios-contenido h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: bold;
    letter-spacing: 1px;
  }
  
  .servicios-contenido p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #fdfdfd;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .servicios-hero {
      height: auto;
      padding: 60px 0;
    }
  
    .servicios-contenido h1 {
      font-size: 2rem;
    }
  
    .servicios-contenido p {
      font-size: 1rem;
    }
  }
  







  .equipo-descripcion {
    padding: 80px 20px;
    background-color: #f9f9f9;
  }
  
  .equipo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
  }
  
  .equipo-texto h1 {
    color: #c01121	;
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  
  .equipo-texto h6 {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
  }
  
  .equipo-texto p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.6;
  }
  
  .btn-equipo {
    background-color: #c01121	;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: background-color 0.3s;
  }
  
  .btn-equipo:hover {
    background-color: #d14a2d;
  }
  
  .equipo-img img {
    width: 60%;
    height: auto;
    border-radius: 10px;
  }
  











  .detalle-equipo {
    background-color: #fff;
    padding: 80px 20px;
    font-family: Arial, sans-serif;
  }
  
  .detalle-equipo .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .detalle-header {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .detalle-header h1 {
    font-size: 2.5rem;
    color: #c01121	;
    margin-bottom: 15px;
  }
  
  .detalle-header p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .detalle-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* ✅ Centra horizontalmente las filas */
    gap: 30px;
    margin-bottom: 40px;
  }
  
  
  .detalle-card {
    background-color: #f9f9f9;
    padding: 25px 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    width: 260px; /* ✅ Tamaño fijo para alinear bien las filas */
    margin-bottom: 30px;
  }
  
  .detalle-card i {
    font-size: 2.5rem;
    color: #c01121	;
    margin-bottom: 15px;
  }

  .detalle-card h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
  }
  
  .detalle-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
  }
  
  .detalle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  }
  
  /* Botón */
  .btn-ficha-wrapper {
    text-align: center;
  }
  
  .btn-ficha {
    display: inline-block;
    background-color: #c01121	;
    color: white;
    padding: 14px 28px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
  }
  
  .btn-ficha i {
    margin-right: 8px;
  }
  
  .btn-ficha:hover {
    background-color: #e0525c;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .detalle-header h1 {
      font-size: 2rem;
    }
  
    .detalle-card i {
      font-size: 2rem;
    }
  
    .btn-ficha {
      padding: 12px 20px;
      font-size: 0.95rem;
    }
  }
  





  .seccion-ventajas-manlift {
    background-color: #fff;
    padding: 60px 20px;
    font-family: Arial, sans-serif;
  }
  
  .ventajas-container {
    max-width: 1200px;
    margin: auto;
  }
  
  .ventajas-titulo small {
    font-weight: bold;
    color: #aaa;
    font-size: 0.9rem;
  }
  
  .ventajas-titulo h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #111;
    margin-bottom: 40px;
  }
  
  .ventajas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
  }
  
  .ventaja-item {
    position: relative;
    border-top: 2px solid #c01121	;
    padding-top: 25px;
  }
  
  .ventaja-item .numero {
    position: absolute;
    top: -20px;
    left: 0;
    font-weight: bold;
    color: #c01121	;
    font-size: 1.2rem;
    background-color: #fff;
    padding: 0 8px;
  }
  
  .ventaja-item h3 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #222;
    margin-bottom: 10px;
  }
  
  .ventaja-item p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
  }
  






  :root {
    --color-base: #c01121	;
  }
  
  /* Sección de galería */
  .galeria-seccion {
    padding: 60px 20px;
    background-color: #f5f5f5;
    text-align: center;
  }
  
  .galeria-seccion h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #333;
  }
  
  .galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: auto;
  }
  
  .galeria-item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 10px;
  }
  
  .galeria-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
  }
  
  .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.65);
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  
  .galeria-item:hover img {
    transform: scale(1.05);
  }
  
  .galeria-item:hover .overlay {
    opacity: 1;
  }
  
  .overlay h1 {
    font-size: 1.3rem;
    color: var(--color-base);
  }
  
  .overlay p {
    font-size: 0.95rem;
  }
  
  
  /* === LIGHTBOX === */
  .lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  .lightbox-content {
    display: flex;
    background: #fff;
    max-width: 90%;
    width: 1000px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    flex-wrap: wrap;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
  }
  
  .lightbox-image {
    flex: 1 1 50%;
    background: #000;
    text-align: center;
  }
  
  .lightbox-image img {
    width: 100%;
    height: auto;
  }
  
  .lightbox-info {
    flex: 1 1 50%;
    padding: 30px;
    background-color: #fff;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .lightbox-info h1 {
    color: var(--color-base);
    margin-bottom: 15px;
    font-size: 1.8rem;
  }
  
  .lightbox-info p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .close-btn {
    position: absolute;
    top: 10px; right: 15px;
    font-size: 2rem;
    background: var(--color-base);
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 8px 14px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    z-index: 20;
  }
  
  .close-btn:hover {
    background-color: #c64727;
  }
  
  .nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    background: var(--color-base);
    color: white;
    border: none;
    padding: 12px 18px;
    cursor: pointer;
    z-index: 20;
    border-radius: 50%;
    transition: background-color 0.3s ease;
  }
  
  .nav-btn:hover {
    background-color: #c64727;
  }
  
  .nav-btn.prev {
    left: 10px;
  }
  
  .nav-btn.next {
    right: 10px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .lightbox-content {
      flex-direction: column;
      width: 90%;
    }
  
    .lightbox-image, .lightbox-info {
      flex: 1 1 100%;
    }
  }
  