

 /* Hero */
 .hero-wrap {
     display: flex;
     justify-content: center;
     padding: 1.25rem;
 }

 .hero {
     width: 100%;
     max-width: var(--container);
     border-radius: 0;
     min-height: 480px;
     display: flex;
     flex-direction: column;
     align-items: flex-start;
     justify-content: flex-end;
     gap: 1rem;
     padding: 0 1rem 2.5rem;
     background-position: center;
     background-size: cover;
     background-repeat: no-repeat;
 }

 .hero {
     background-image: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .4)), url("../assets/images/home/hero.jpeg");
 }

 .hero h1 {
     color: #fff;
     font-size: clamp(2rem, 4vw, 3rem);
     font-weight: 700;
     letter-spacing: -0.033em;
     line-height: 1.1;
 }

 .hero h2 {
     color: #fff;
     font-size: clamp(.95rem, 1.6vw, 1.125rem);
     font-weight: 300;
     max-width: 70ch;
 }

 /* Sections */
 .section-title {
     font-size: 1.375rem;
     font-weight: 800;
     letter-spacing: -0.015em;
     padding: 1.25rem 1rem 0.5rem;
 }

 .paragraph {
     padding: .25rem 1rem 1rem;
 }

 .section {
     padding: 6rem 2rem;
 }

 /* Fondo claro (por defecto) */
 .section--light {

     background-color: var(--bg-light);
     color: var(--text-dark);
 }

 /* Fondo gris suave */
 .section--gray {
     background-color: var(--bg-gray);
     color: var(--text-dark);
 }

 /* Fondo azul con texto blanco */
 .section--blue {
     background-color: var(--bg-blue);
     color: var(--text-light);
 }


 /* Services Grid */
 .services {
     display: grid;
     grid-template-columns: 1fr;
     /*repeat(auto-fit, minmax(220px, 1fr));*/
     gap: 1rem;
     padding: 1rem;
 }

 /* A partir de 768px (tablets/desktop) → 3 columnas */
 @media (min-width: 768px) {
     .services {
         grid-template-columns: repeat(3, 1fr);
         gap: 2rem;
         padding: 2rem;
     }
 }

 .card {
     display: flex;
     align-items: flex-start;
     /* importante: alinea arriba, no al centro */
     gap: 0.75rem;
     padding: 1rem;
     background: #fff;
     border: 1px solid #dce0e5;
     border-radius: 12px;
 }

 .card__icon {
     width: 24px;
     height: 24px;
     color: #111418;
     flex-shrink: 0;
 }

 .card__content {
     display: flex;
     flex-direction: column;
 }

 .card__title {
     font-size: 1rem;
     font-weight: 700;
     margin: 0;
     color: #111418;
 }

 .card__desc {
     font-size: 0.9rem;
     color: #637588;
     margin-top: 0.25rem;
     line-height: 1.4;
 }

 .services-cta {
     display: flex;
     justify-content: center;
     margin-top: 1.5rem;
 }

 .btn-cta {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     padding: 0.75rem 1.5rem;
     background: #1980e6;
     color: #fff;
     font-weight: 700;
     font-size: 1rem;
     border-radius: 8px;
     text-decoration: none;
     transition: background 0.3s ease;
 }

 .btn-cta:hover {
     background: #facc15;
  color: #0D2A55;
  transform: translateY(-2px);
 }

 /* Process (vertical timeline) */
 .process {
     display: grid;
     grid-template-columns: 40px 1fr;
     column-gap: .5rem;
     padding: 0 1rem;
 }

 .process__rail {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: .25rem;
     padding-top: .75rem;
 }

 .rail-line {
     width: 1.5px;
     background: var(--border);
     flex: 1;
 }

 .process__icon {
     width: 24px;
     height: 24px;
     color: var(--text);
 }

 .process__step {
     padding: .75rem 0;
 }

 .process__step p {
     margin: 0;
 }

 .process__title {
     font-weight: 600;
 }

 .process__desc {
     color: var(--muted);
 }

 /* Process with Side Image */
 .process-section {
     padding: 0 1rem 1.5rem;
 }

 .process-grid {
     display: grid;
     gap: 1rem;
     align-items: start;
 }

 .process-image {
     border-radius: var(--radius);
     overflow: hidden;
     background: #eef1f4;
     margin: 0;
 }

 .process-image img {
     width: 100%;
     max-width: 600px;
     height: 100%;
     max-height: 600px;
     object-fit: cover;
     display: block;
 }

 @media (min-width: 768px) {
     .process-grid {
         grid-template-columns: 1.2fr 1fr;
         gap: 1.5rem;
     }

 }

 /* Testimonials (horizontal scroll) */
 .testimonials-scroll {
     display: flex;
     overflow-x: auto;
     -ms-overflow-style: none;
     scrollbar-width: none;
 }

 .testimonials-scroll::-webkit-scrollbar {
     display: none;
 }

 .testimonials-row {
     display: flex;
     gap: .75rem;
     padding: 1rem;
 }

 .testimonial {
     display: flex;
     flex-direction: column;
     gap: 1rem;
     min-width: 240px;
 }

 .testimonial__img {
     width: 100%;
     background: #eef1f4;
     background-position: center;
     background-repeat: no-repeat;
     background-size: cover;
     border-radius: var(--radius);
     aspect-ratio: 1 / 1;
 }

 .testimonial p {
     font-weight: 500;
 }

 /* CTA block */
 .cta {
     display: flex;
     justify-content: center;
 }

 .cta__inner {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 1.25rem;
     padding: 2.5rem 1rem;
     max-width: var(--container);
 }

 .cta h1 {
     font-size: clamp(2rem, 3.5vw, 2.5rem);
     font-weight: 900;
     letter-spacing: -0.033em;
     text-align: center;
     max-width: 720px;
 }

 .cta p {
     text-align: center;
     max-width: 720px;
 }


/*Nuevo CTA*/

.home-cta {
  background: linear-gradient(135deg, #0D2A55 0%, #1980e6 50%, #0D2A55 100%);
  color: #fff;
  padding: 5rem 1.5rem;
  text-align: center;
}

.home-cta .cta-inner {
  max-width: 800px;
  margin: 0 auto;
}

.home-cta .cta-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.home-cta .cta-subtitle {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 2.25rem;
}

.home-cta .cta-btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0D2A55;
  background: #fff;
  border-radius: 14px;
  text-decoration: none;
  transition: background 0.25s, color 0.25s, transform 0.2s;
}

.home-cta .cta-btn:hover {
  background: #facc15;
  color: #0D2A55;
  transform: translateY(-2px);
}



 /* Responsive */
 @media (min-width: 480px) {
     .nav {
         display: flex;
     }

     .site-header__bar {
         padding-inline: 2.5rem;
     }

     .btn--lg {
         height: 48px;
         padding-inline: 1.25rem;
     }

     .hero {
         border-radius: var(--radius-lg);
         padding: 0 2.5rem 2.5rem;
         gap: 2rem;
     }

     .cta__inner {
         padding: 5rem 2.5rem;
         gap: 2rem;
     }
 }

 @media (min-width: 1024px) {
     .site-header__bar {
         padding-inline: 2.5rem;
     }
 }


 /* About CTA styles */
.about-cta {
  display: flex;
  flex-wrap: wrap;        /* permite que los botones bajen en pantallas pequeñas */
  gap: 0.75rem;           /* espacio entre botones */
  margin-top: 1.25rem;
}

.about-cta a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  min-width: 160px;       /* para que no se vean demasiado estrechos */
  text-align: center;
  transition: all 0.2s ease;
}

/* Primary button */
.about-cta .btn-cta {
  background-color: #1980e6;   /* tu color principal */
  color: #fff;
}

.about-cta .btn-cta:hover {
  background: #facc15;
  color: #0D2A55;
  transform: translateY(-2px);
}

/* Secondary button */
.about-cta .btn {
  background-color: transparent;
  border: 2px solid #1980e6;
  color: #1980e6;
}

.about-cta .btn:hover {
  background-color: #1980e6;
  color: #fff;
  transform: translateY(-2px);
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .about-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .about-cta a {
    width: 100%;     /* botones full-width en móvil */
  }
}



