/* Fuente moderna */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #0a1f44, #0a1c6d);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* Tarjeta principal */
.card {
  background: #fff;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 8px 20px rgb(0, 0, 0);
  animation: fadeIn 1s ease-in-out;
}

/* Logo */
.logo {
  width: 300px;
  height: auto;
}

/* Nombre empresa */
.card h1 {
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0px 0px 15px 0px;
  color: #0a1f44;
}

.btn-site {
    display: inline-block;
    background-color: #e9f6e5;
    color: #4054B2;
    padding: 10px 15px;
    margin: 15px 5px 15px 5px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    box-shadow: 0 8px 10px rgba(0,0,0,0.5);
    transition: 0.3s;
}

.btn-site:hover {
    background: #4054B2;
    color: #fff;
    transform: scale(1.1);
}

.card h2 {
    font-size:1.1rem;
    color: #0a1f44d0;
}

/* Redes sociales */
.socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.socials a {
  font-size: 1.5rem;
  color: #4054B2;
  transition: 0.3s;
}

.socials a:hover {
  color: #23A455;
  transform: scale(1.2);
}

/* Botón página web */
.website {
  display: inline-block;
  text-decoration: none;
  background: #4054B2;
  color: #fff;
  padding: 0.8rem 1.2rem;
  border-radius: 30px;
  font-weight: 500;
  transition: 0.3s;
}

.website:hover {
  background: #23A455;
  transform: translateY(-2px);
}

/* Animación entrada */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
    .card {
        max-width: 300px;
        width: 90%;
    }
}
