* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, sans-serif;
}

body {
  min-height: 100vh;
  background: 
    linear-gradient(
        45deg,
        rgba(255, 0, 0, 0.9) 0%,
        rgba(255, 255, 255, 0.9) 100%
    ),
    url("../assets/escudo.png");
  background-size: cover, 600px;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  width: 100%;
  padding: 1rem;
}

.card {
  max-width: 600px;
  margin: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.logo {
  width: 120px;
  margin-bottom: 1rem;
  opacity: 0.9;
}

h1 {
  font-size: 2.5rem;
  letter-spacing: 2px;
  margin-bottom: 0.3rem;
}

.subtitle {
  font-size: 1.1rem;
  color: #000;
  margin-bottom: 1.5rem;
}

.message {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.contact p {
  margin-bottom: 0.5rem;
  color: #000;
}

.contact a {
  color: #0073ff;
  text-decoration: none;
  font-weight: 500;
}

.contact a:hover {
  text-decoration: underline;
}

.contact ul{
  list-style-type: none;
}