/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Estilos generales */
body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #ffffff;
  color: #000;
}

/* Header */
.top {
  padding: 20px 20px;
}

/* Contenedor principal */
.container {
  text-align: center;
  margin-top: 10px;
}
.logos {
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* Logo MIDA */
.mida-logo img {
  margin-bottom: 10px;
  width: clamp(270px, 40vw, 300px);
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;

}

/* Logo SIGAP */
.sigap-logo img{
  margin-bottom: 10px;
  width: clamp(180px, 20vw, 220px);
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;

}

.sigap-text {
  display: block;
  margin-top: 8px;
  font-weight: bold;
  font-size: 20px;
  color: #000;
}

/* Título */
h1 {
  font-size: clamp(24px, 3vw ,32px);
  margin: 30px 0 60px;
  font-weight: bold;
}

/* Botones / tarjetas */
.buttons {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.card {
  background: linear-gradient(to bottom, #6fae3f, #4f8f2f);
  color: white;
  padding: 40px 30px;
  width: 260px;
  border-radius: 20px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: 
    transform 0.4s ease,
    box-shadow 0.4s ease,
    background 0.4s ease;
}


.card:hover {
  background: linear-gradient(to bottom, #5e9933, #3f7723);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}


a {
  text-decoration: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
