    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: white;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 1px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      z-index: 1000;
    }
    body{
      background: #f5f5f5;
    }
    header .logo {
      font-size: 24px;
      font-weight: bold;
      color: #005073;
    }
    nav a {
      margin: 0 30px;
      text-decoration: none;
      color: #333;
      font-weight: 500;
      font-family: Nyala; 
      font-size: 20px
    }
    nav a:hover {
      color: #005073;
    }
    .btn {
      background: #005073;
      color: white;
      padding: 8px 15px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      width: 110px;
      height: 28px;
      margin-right: 12px;
      font-family: Nyala; 
      font-size: 20px;
    }
    .btn:hover {
      background: #0077b6;
    }
    h2{
        text-align: center;
    }
    .hero { 
        position: relative; 
        height: 400px; 
        background: #111; 
        color: white; 
        display: flex; 
        align-items: center; 
        justify-content: center; 
        text-align: center; 
         margin-top: 100px;
         border-radius: 20px;

    }
    .hero img { 
        position: absolute; 
        inset: 0; width: 100%; 
        height: 100%; 
        object-fit: cover; 
        opacity: 0.4; 
        border-radius: 20px;
      }
    .hero h1 { 
        position: relative; 
        font-size: 80px; 
        font-weight: bold; 
    }
    p{
      text-align: center;
      font-family: Segoe UI; 
      font-size: 30px;
      /*-webkit-text-stroke: 1px*/
    }

    .principal{
       
        /*display: flex;*/
        flex-direction: column; /* En móvil: apilado */
        align-items: center;
        text-align: center;
        gap: 20px;
        animation: fadeIn 0.8s ease forwards;
        background: #f5f5f5;
    }
    .defi, .objetivo{
        display: flex;
        align-items: center;
        justify-content: center;
        
        flex-wrap: wrap;           /* acomoda en pantallas chicas */
        animation: slideInDown 0.8s ease forwards;
        /*box-shadow: 0 0 12px #d7d7d7;*/
 
    }

    @keyframes slideInDown {
        from { opacity: 0; transform: translateY(-100px); }
        to   { opacity: 1; transform: translateY(0);}
    }

     /* --- Diseño para pantallas grandes --- */
    @media (min-width: 768px) {
    .principal {
        flex-direction: row;   /* en desktop se acomodan en fila */
        justify-content: center;
        text-align: center;
        gap: 40px;
    }

    .defi, .objetivo {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .defi, .objetivo {
        text-align: center;
    }
    }
    .marcas{
        text-align: center;
    }
    
   #container {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}
#left, #right {
  position: absolute;
  width: calc(50% + 100px);
  height: 300px;
  transform: skew(-20deg, 0deg);
  overflow: hidden;
  color: white;
  text-shadow: 1px 1px 2px black;
}
#left img, #right img{
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: skew(20deg, 0deg);
  filter: brightness(30%);
}
.content {
  position: absolute;
  top: 50%;
  left: calc(50% + 50px);
  transform: skew(20deg, 0deg) translate(-50%, -50%);
  z-index: 2;
}
#right .content {
  left: 50%;
  right: 50px;
}
#left, #right img {
  left: -100px;
}
#right, #left img {
  right: -100px;
}
/* === CARRUSEL EN EL LADO DERECHO === */
#right .slider {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#right .slider img {
   position: absolute;
  max-width: 100%;        /* controla el ancho (ajústalo) */
  max-height: 100%;       /* controla la altura (ajústalo) */
  width: auto;
  height: auto;
  left: 50%;
  top: 50%;
  transform: skew(20deg, 0deg) translate(-50%, -50%);
  filter: brightness(30%);
  opacity: 0;
  animation: fade 12s infinite;
  object-fit: contain;   /* asegura que no se recorte */

}
#right .slider img:nth-child(1) { animation-delay: 0s; }
#right .slider img:nth-child(2) { animation-delay: 4s; }
#right .slider img:nth-child(3) { animation-delay: 8s; }
#right .slider img:nth-child(4) { animation-delay: 12s; }
#right .slider img:nth-child(5) { animation-delay: 16s; }
#right .slider img:nth-child(6) { animation-delay: 20s; }
#right .slider img:nth-child(7) { animation-delay: 24s; }
#right .slider img:nth-child(8) { animation-delay: 28s; }
#right .slider img:nth-child(9) { animation-delay: 32s; }

@keyframes fade {
  0% { opacity: 0; }
  10% { opacity: 1; }
  30% { opacity: 1; }
  40% { opacity: 0; }
  100% { opacity: 0;}
}

.beneficios {
    max-width: 1000px;
    margin: 50px auto;
    padding: 40px;
    background: linear-gradient(135deg, #f7f7f7, #e0e0e0);
    border-radius: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    font-family: 'Segoe UI', sans-serif;
    text-align: center;
}

.beneficios h2 {
    font-size: 30px;
    margin-bottom: 30px;
    color: #333;
}

.beneficios ul {
    list-style: none; /* quitamos bullets por defecto */
    padding: 0;
    display: grid;
    grid-template-columns: 1fr; /* una columna por defecto */
    gap: 15px;
}

.beneficios li {
    position: relative;
    padding-left: 30px;
    font-size: 30px;
    color: #444;
    font-family: 'Segoe UI';
}

/* Agregar un pequeño ícono o bullet personalizado */
.beneficios li::before {
    content: "✔"; /* puedes cambiar por otro símbolo o emoji */
    position: absolute;
    left: 0;
    color: #45b350;
    font-weight: bold;
}

/* Dos columnas en pantallas grandes */
@media (min-width: 768px) {
    .beneficios ul {
        grid-template-columns: 1fr 1fr;
}
}


:root{
      --accent1: #0f172a;
      --accent2: #005073;
      --accent3: #0077b6;
      --bg: #fbf6f3;
      --muted: #7a7a7a;
      --card: #ffffff;
      --shadow: 0 8px 30px rgba(15,20,40,0.08);
    }
    
    
.hero-band{
  background: linear-gradient(90deg,var(--accent1),var(--accent2));
  text-align:center;
  padding:60px 20px 80px;
  position:relative;
  clip-path: polygon(0 0,100% 0,100% 85%,50% 100%,0 85%);
  border-radius: 20px;
}
.hero-band .people {font-size:84px; opacity:.95}
.c{max-width:900px;margin:0 auto 24px;font-family: Segoe UI; font-size: 30px;}
@media (max-width:900px){
  .content{flex-direction:column;padding:40px 6vw;margin-top:20px}
  .illustration{width:280px;height:260px}
  .hero-band{padding:40px 16px 70px}
}
.hero-band{
  color: white;
  opacity: 0.4px;
}


.con{
  position: absolute;
  width: 1000px;
  height: 300px;
  transform: skew(-20deg, 0deg);
  overflow: hidden;
}
    
.cards{
       font-family: Arial, sans-serif;
      background: #f5f5f5;
      margin: 0;
      padding: 40px 20px;
      display: flex;
      justify-content: center;
}
      .cards-container {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      gap: 20px;
      flex-wrap: wrap;
      max-width: 1200px;
    }

    .card {
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      width: 500px;
      height: 350px;
      overflow: hidden;
      text-align: center;
    }

    .card h2 {
      font-family: Nyala; 
      font-size: 45px;
      margin: 16px 0 8px;
    }

    .card p {
      font-size: 0.9rem;
      color: #555;
      margin-bottom: 12px;
      padding: 0 10px;
    }

    .carousel {
      position: relative;
      width: 100%;
      height: 200px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      
    }

    .carousel img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      position: absolute;
      opacity: 0;
      animation: fade var(--duration) linear infinite;
      animation-delay: calc(var(--i) * var(--step));
    }

    @keyframes fade {
      0% { opacity: 0; }
      8% { opacity: 1; }
      25% { opacity: 1; }
      33% { opacity: 0; }
      100% { opacity: 0; }
    }

    .whatsapp-button {
  position: fixed; /* Fija el elemento en la pantalla */
  bottom: 50px;    /* Distancia desde la parte inferior */
  right: 50px;     /* Distancia desde la parte derecha */
  z-index: 100;    /* Asegura que esté sobre otros elementos */
  display: block;  /* Asegura que el enlace ocupe el espacio del img */
}

.whatsapp-button img {
  width: 64px;     /* Ancho del icono */
  height: 64px;    /* Alto del icono */
  border-radius: 50%; /* Para un botón redondo (opcional) */
  box-shadow: 0 2px 5px rgba(0,0,0,0.3); /* Sombra para hacerlo flotante */
}

.campo{
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        flex-wrap: wrap;           /* permite que se acomode en pantallas chicas */
        animation: slideInDown 0.8s ease forwards;
        
        
        
    }
    .eslogan{
        flex: 1 1 45%;             /* ocupa la mitad en pantallas grandes */
        display: flex;
        justify-content: center;
    }
    .redes{
        flex: 1 1 50%;             /* ocupa la otra mitad */
        font-size: 1.5rem;
        line-height: 1.4;
        text-align: center;
    }
    .footer{
        background: linear-gradient(90deg, #0f172a, #005073, #0077b6);
        color: white;
        height: max-content;
    
    }
    .Designed{
      text-align: center;
      font-size: 16px;
    }
    .logo-face{
        width: 57px;
        height: 57px;
    }
    .logo-linke{
        width: 55px;
        height: 55px;
    }
    .logo-insta{
        width: 55px;
        height: 55px;
    }




