      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;
    }
    
    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: 40px;
        border-radius: 50px;

    }
    .hero img { 
        position: absolute; 
        inset: 0; width: 100%; 
        height: 100%; 
        object-fit: cover; 
        opacity: 0.4; 
        border-radius: 50px;
    }
    .hero h1 { 
        position: relative; 
        font-size: 80px; 
        font-weight: bold;  
    }
    
   
     .objetivos {
  position: relative;
  padding: 60px 40px;
  color:white;
  
  background: url("Imagen/Imagenes editadas/IMG_20250917_125910.jpg") center/cover no-repeat;
  width: 80%;
        margin: 10px auto;
        padding: 30px;
        display: flex;
        flex-wrap: wrap;
        margin-top: 50px;
        opacity: 1;
        border-radius: 50px;
}

/* capa de opacidad */
.objetivos .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5); /* oscurece la imagen */
  z-index: 0;
  border-radius: 50px;
}

/* contenido encima */
.objetivos .contenido {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columnas en PC */
  gap: 20px;
}
/* texto */
.objetivos p {
  font-size: 20px;
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

/* 📱 Responsivo */
@media (max-width: 768px) {
  .objetivos .contenido {
    grid-template-columns: 1fr; /* 1 columna en móviles */
    border-radius: 50px;
  }

  .objetivos p {
    font-size: 16px;
}
}
    /* Sección principal */
.herramienta {
  display: grid;
  grid-template-columns: 1fr 1fr; /* dos columnas */
  gap: 30px;
  align-items: center;
  padding: 40px;
  max-width: 1200px; /* límite de ancho total */
  margin: auto;
}


/* Card de texto */
.herramienta .cardS {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  overflow-wrap: break-word; /* evita que palabras largas se salgan */
  max-width: 100%; /* nunca más grande que su columna */
}

/* Texto dentro de la card */
.herramienta .cardS h3 {
  font-family: Nyala;
  font-size: 30px;
  margin-bottom: 15px;
  line-height: 1.3;
  text-align: center;
}

.herramienta .cardS p {
  font-family: Segoe UI;
  font-size: 20px;
  line-height: 1.6;
}

/* Video */
.herramienta .video {
  width: 100%;
  height: auto;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* 📱 Responsivo: móviles */
@media (max-width: 900px) {
  .herramienta {
    grid-template-columns: 1fr; /* una sola columna */
    text-align: center;
  }

  .herramienta .cardS {
    font-size: 18px;
  }

  .herramienta .cardS h3 {
    font-size: 24px;
  }

  .herramienta .cardS p {
    font-size: 16px;
}
}


.grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }
    .card {
      background: white;
      border-radius: 16px;
      padding: 30px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      text-align: center;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    }
    .card h3 {
      font-size: 20px;
      margin-bottom: 15px;
      color: #005073;
    }
    .card p {
      color: #555;
    }
    .features {
      background: #f5f5f5;
      padding: 60px 20px;
    }
    
    .features h2 {
      text-align: center;
      font-size: 32px;
      margin-bottom: 40px;
    }
    .features .grid {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    .icon {
      font-size: 40px;
      color: #005073;
      margin-bottom: 15px;
    }
.ViE {
  position: relative;
  width: 100%;
  margin: 10px auto;
  padding: 30px;
  display: flex;
  justify-content: center;
}

.vi {
  width: 70%;       /* ancho en PC */
  max-width: 900px; /* opcional: límite máximo */
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* 📱 Responsivo: en móviles ocupa todo el ancho */
@media (max-width: 768px) {
  .vi {
    width: 100%;
    max-width: 100%;
    border-radius: 0; /* opcional: bordes rectos en móvil */
}
}

    .ekahau {
    position: relative; /* necesario para que el pseudo-elemento se posicione */
    display: flex;
    flex-wrap: wrap;
    margin: 40px;
    gap: 20px;
    align-items: center;
    overflow: hidden; /* por si acaso, que no sobresalga */
    
}


    .ekahau::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(235, 33, 47, 0.8),
        rgba(254, 192, 49, 0.8),
        rgba(69, 179, 80, 0.8)
    ), rgba(0,0,0,0.2); /* capa gris encima */
    background-blend-mode: multiply; /* mezcla colores con gris */
 z-index:0;
}


.ekahau > * {
    position: relative;
    z-index: 1; /* eleva el contenido por encima del pseudo-elemento */
}

.info {
    flex: 1 1 35%;
    padding: 20px;
    text-align: center;
    color: white;
    font-size: 50px;
    font-family: 'Segoe UI';
    text-shadow:
        -1px -1px 0 #000,
         1px -1px 0 #000,
        -1px  1px 0 #000,
         1px  1px 0 #000;
}

.ima {
    flex: 1 1 40%;
    padding: 20px;
    text-align: center;
}

.log {
    width: 100%;
    max-width: 1200px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* En móviles: columnas */
@media (max-width: 768px) {
    .ekahau {
        flex-direction: column; /* se apilan */
    }

    .info, .ima {
        flex: 1 1 100%;
        text-align: center; /* centramos en móviles */
    }

    .log {
        max-width: 100%;
        height: auto;
    }
}

.cotiza{
   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;
    
}
.cotiza h2{
font-family: Nyala;
    font-size: 40px;
}


.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;
    }
    .logo-face{
        width: 55px;
        height: 55px;
    }
    .logo-linke{
        width: 55px;
        height: 55px;
    }
    .logo-insta{
        width: 55px;
        height: 55px;
    }