 /* Scroll Reveal Animations */
        .reveal {
            opacity: 0;
            transform: translateY(60px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-left {
            opacity: 0;
            transform: translateX(-60px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .reveal-left.active {
            opacity: 1;
            transform: translateX(0);
        }

        .reveal-right {
            opacity: 0;
            transform: translateX(60px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .reveal-right.active {
            opacity: 1;
            transform: translateX(0);
        }

        .reveal-scale {
            opacity: 0;
            transform: scale(0.9);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .reveal-scale.active {
            opacity: 1;
            transform: scale(1);
        }

        /* Hero Section - Servicios */
      .services-hero {
 background: linear-gradient(135deg, rgba(12, 50, 120, 0.9) 0%, rgba(26, 109, 223, 0.8) 100%), 
              url('/imagenes-nosotros/img-fondo-section.jpg') center/cover no-repeat;
    background-size: cover; /* Cubre todo el espacio */
    background-position: center; /* Centra la imagen */
    background-repeat: no-repeat; /* Evita repetición */
    padding: 120px 20px 80px;
    color: #ffffff;
    text-align: center;
    position: relative; /* Para el overlay */
}

        .services-hero-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .services-hero h1 {
            font-size: 3.5rem;
            font-weight: 550;
            margin-bottom: 20px;
            letter-spacing: -0.02em;
        }

        .services-hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 40px;
            opacity: 0.9;
            font-weight: 300;
        }

        .breadcrumb {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
            font-size: 0.9rem;
        }

        .breadcrumb a {
            color: white;
            text-decoration: none;
            opacity: 0.8;
            transition: opacity 0.3s;
        }

        .breadcrumb a:hover {
            opacity: 1;
        }

        .breadcrumb span {
            margin: 0 10px;
            opacity: 0.6;
        }

        /* Services Grid */
        .services-section {
            padding: 100px 20px;
             background: linear-gradient(135deg, #f7f7f7 0%, #f0f0f0 50%, #f7f7f7 100%);
        }

        .services-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-header h2 {
            font-size: 2.8rem;
            font-weight: 300;
            margin-bottom: 20px;
            color: #1a1a1a;
            letter-spacing: -0.02em;
        }

        .section-header p {
            font-size: 1.2rem;
            color: #666;
            font-weight: 300;
            max-width: 700px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }

        .service-image {
            height: 220px;
            overflow: hidden;
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .service-card:hover .service-image img {
            transform: scale(1.05);
        }

        .service-content {
            padding: 30px;
        }

        .service-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #1a1a1a;
        }

        .service-content p {
            color: #666;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .service-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 25px;
            padding-top: 20px;
            border-top: 1px solid #f0f0f0;
        }

        .service-price {
            font-size: 1.2rem;
            font-weight: 600;
            color: #0c3278;
        }

        .service-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            background: linear-gradient(135deg, #0c3278 0%, #1a6ddf 160%);
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 500;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        .service-link:hover {
            background: #1a1a1a;
            transform: translateY(-2px);
        }

        /* Service Process */
        .process-section {
            padding: 100px 20px;
            background: white;
        }

        .process-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .process-steps {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 60px;
        }

        .process-step {
            flex: 1;
            min-width: 250px;
            max-width: 300px;
            text-align: center;
            position: relative;
        }

        .process-step:not(:last-child):after {
            content: "";
            position: absolute;
            top: 40px;
            right: -30px;
            width: 30px;
            height: 2px;
            background: #e5e5e5;
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: #f0f0f0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.8rem;
            font-weight: 600;
            color: #0c3278;
        }

        .process-step h4 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: #1a1a1a;
        }

        .process-step p {
            color: #666;
            font-size: 0.95rem;
        }

        /* Testimonials */
        .testimonials-section {
            padding: 100px 20px;
            background: #f8f9fa;
        }

        .testimonials-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .testimonial-card {
            background: white;
            padding: 30px;
            border-radius: 16px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .testimonial-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }

        .testimonial-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .testimonial-author h5 {
            font-size: 1.1rem;
            margin-bottom: 5px;
            color: #1a1a1a;
        }

        .testimonial-author p {
            font-size: 0.85rem;
            color: #999;
        }

        .testimonial-rating {
            color: #FFC107;
            margin-bottom: 15px;
        }

        .testimonial-content {
            color: #555;
            font-style: italic;
            line-height: 1.6;
        }

        /* CTA Section */
        .cta-section {
            padding: 100px 20px;
            background: linear-gradient(135deg, #0c3278 0%, #1a6ddf 160%);
            color: white;
            text-align: center;
        }

        .cta-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-section h2 {
            font-size: 2.8rem;
            font-weight: 300;
            margin-bottom: 20px;
            letter-spacing: -0.02em;
        }

        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            background: white;
            color: #0c3278;
            text-decoration: none;
            border-radius: 12px;
            font-weight: 500;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }

        .btn-primary:hover {
            background: #f0f0f0;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            background: transparent;
            color: white;
            text-decoration: none;
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: 12px;
            font-weight: 500;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .btn-secondary:hover {
            border-color: white;
            background: rgba(255,255,255,0.1);
        }



.seccion-info {
  margin-top: 10px;
  padding: 60px 20px;
  background-color: #f7f7f7;
  width: 100vw; /* Usa el ancho completo del viewport */
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  box-sizing: border-box;
}

.info-contenedor {
  max-width: 1200px; /* Esto limita el contenido interno, no la sección */
  margin: 0 auto; /* Centra el contenido */
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

/* Texto al lado izquierdo */
.info-texto {
  flex: 1 1 500px;
}

.info-texto h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #222;
}

.info-texto h4 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #666;
}

.info-texto p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

/* Imagen al lado derecho */
.info-imagen {
  flex: 20 1 600px;
   
}

.info-imagen img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  transform: translateY(119px);
  transform: translateX(156px);

}

/* Botón */
.linktree-btn1 {
  display: inline-block;
  margin-top: 40px;
  padding: 12px 28px;
  background-color: #0e3886;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 16px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.linktree-btn1:hover {
  background-color: #1245a4;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .info-contenedor {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .info-imagen,
  .info-texto {
    flex: 1 1 100%;
  }

  .linktree-btn1 {
    margin-top: 20px;
  }

  .info-texto h2 {
    font-size: 24px;
  }

  .info-texto h4 {
    font-size: 18px;
  }

  .info-texto p {
    font-size: 15px;
  }
}


.seccion-info {
  /* Tus estilos existentes... */
  overflow: hidden; /* Para que los elementos animados no causen scroll */
}


/* Clases que agregará ScrollTrigger */
.seccion-info.animated .info-texto,
.seccion-info.animated .info-imagen {
  opacity: 1;
  transform: translateX(0);
}


/* LINKTREE BUTTON */
.linktree-btn1 {
  display: inline-block;
  padding: 12px 28px;
  background-color: #0e3886;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 16px;
  transition: background-color 0.3s ease, transform 0.2s ease;

}
.linktree-btn1:hover {
  background-color: #1245a4;
  transform: scale(1.05);
}



/* Media Queries para Responsive */
@media (max-width: 768px) {
    .services-hero {
        padding: 100px 20px 60px;
    }
    
    .services-hero h1 {
        font-size: 2.5rem; /* Tamaño más pequeño para tablets */
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .services-hero p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 80px 15px 40px;
    }
    
    .services-hero h1 {
        font-size: 2rem; /* Tamaño aún más pequeño para móviles */
        line-height: 1.3;
        margin-bottom: 12px;
        padding: 0 10px; /* Padding lateral para evitar bordes */
    }
    
    .services-hero p {
        font-size: 1rem;
        margin-bottom: 25px;
        padding: 0 10px;
    }
}

@media (max-width: 360px) {
    .services-hero h1 {
        font-size: 1.8rem; /* Tamaño extra pequeño para pantallas muy pequeñas */
        line-height: 1.4;
    }
    
    .services-hero p {
        font-size: 0.95rem;
    }
}

/* Estilos existentes que mantienes... */
.breadcrumb {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb span {
    margin: 0 10px;
    opacity: 0.6;
}