.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;
    }
    
    .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: 110px;
    }
    .hero img { 
        position: absolute; 
        inset: 0; width: 100%; 
        height: 100%; 
        object-fit: cover; 
        opacity: 0.4; }
    .hero h1 { 
        position: relative; 
        font-size: 2.5rem; 
        font-weight: bold; 
    }

    

    .blog{
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }
    article.card{
      background: #f8f8f8;
      border-radius: 8px;
      margin: 1rem;
      box-shadow: 0 0 12px #d7d7d7;
      width: 500px;
      height: 800px;
      
    }
    .header-card img{
      border-radius: 8px 8px 0 0;
      max-height: 350px;
      height: 350px;
      width: 100%;

    }
    .categoria-card{
      margin-top: 1rem;

    }
    .categoria-card span{
      background: #25c4d8;
      color: white;
      padding: .2rem .5rem;
      border-radius: 4px;
    }

    .card footer{
      padding: 0 1rem;
    }
    .perfil-card{
      display: flex;
      align-items: center;
    }
    .img-perfil-card{
      display: flex;
    }
    .img-perfil-card img{
      width: 50px;
      margin: 1rem 1rem 1rem 0;
      border-radius: 50%;
    }
    .text-perfil-card{
      display: flex;
      flex-flow: column;
      text-align: right;
      width: 490px;
    }
    .text-perfil-card span:nth-child(2){
      color: #cfcfcf;
    }
    .card-wrap{
      display: flex;
      flex-flow: wrap;
    }


    .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;
    }
    

    .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 */
    }