*{ margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Poppins', sans-serif; background: #f4f6f9; color: #333; }
        header {
            background: linear-gradient(90deg, #0d47a1, #1976d2);
            color: white;
            text-align: center;
            padding: 80px 20px;
        }
        header h1 { font-size: 48px; margin-bottom: 10px; }
        
        header p { font-size: 18px; max-width: 600px; margin: auto; white-space: pre-line;
        
        }
        .btn {
            display: inline-block;
            margin-top: 25px;
            padding: 12px 25px;
            background: white;
            color: #1976d2;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: 0.3s;
        }
        .btn:hover { background: #e3f2fd; }
        section { padding: 30px 55px; }
        .container { max-width: 1100px; margin: auto; }
        .services { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 15px; margin-bottom: 10px; }
        .card {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            text-align: center;
            transition: 0.3s;
        }
        .card:hover { transform: translateY(-5px); }
        .card h3 { margin-bottom: 15px; color: #0d47a1; }
        .about { background: white; text-align: center; }
        .contact {
            background: #1976d2;
            color: white;
            text-align: center;
        }
        footer {
            background: #111;
            color: #bbb;
            text-align: center;
            padding: 15px;
            font-size: 14px;
        }
        .logo {
    width: 100%;
    max-width: 350px;
    height: auto;
}
/************************************ MODAL ZOOM IMAGENES*******************************************************************/

.modal {
  display: none; /* 👈 oculto al inicio */
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.95);

  justify-content: center;
  align-items: center;
}

.modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  animation: zoom 0.3s ease;
}

.cerrar {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

.flecha {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: white;
  cursor: pointer;
  padding: 10px;
  user-select: none;
}

.izquierda { left: 20px; }
.derecha { right: 20px; }

@keyframes zoom {
  from { transform: scale(0.7); }
  to { transform: scale(1); }
}


/************************************ INFORMACIÓN *******************************************************************/
 /* Contenedor de la sección */
.info-fija {
    position: fixed;
    top: 0;               /* Siempre en la parte superior */
    left: 0;
    width: 100%;
    background-color: #fffae6;
    border-bottom: 2px solid #f0c040;
    overflow: hidden;
    padding: 10px 0;
    z-index: 1000;        /* Siempre encima del contenido */
  }

  /* Texto que se mueve */
  .info-fija p {
    display: inline-block;
    white-space: nowrap;
    position: relative;
    animation: moverTexto 15s linear infinite;
    font-weight: bold;
    color: #333;
    margin: 0;
    padding-left: 100%; /* Empieza fuera del lado derecho */
  }

  /* Animación */
  @keyframes moverTexto {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
  }
/*******************************************************📱 Celulares****************************************************** */
@media (max-width: 768px) {

    header {
        padding: 50px 15px;
    }

    header h1 {
        font-size: 32px;
    }

    header p {
        font-size: 16px;
    }

    section {
        padding: 30px 15px;
    }

    .logo {
        max-width: 220px;
    }
}

/* 📱 Pantallas muy pequeñas */
@media (max-width: 480px) {

    header h1 {
        font-size: 26px;
    }

    .btn {
        padding: 10px 18px;
        font-size: 14px;
    }

    section {
        padding: 20px 10px;
    }
}
/*******************************************************📱 Celulares****************************************************** */
/*********************** Tipos de servicios **************************************** */
.card-link {
    text-decoration: none;
    color: inherit;
}

.card-link:hover,
.card-link:focus,
.card-link:active {
    text-decoration: none;
}

/*********************** WATHAS APP **************************************** */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;              /* tamaño del icono */
    height: 60px;
    background-image: url("img/whatsapp.png"); /* tu imagen */
    background-size: contain; /* ajusta la imagen completa */
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}