/* --- Estilos generales --- */
body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #f6f7fb;
  color: #333;
  height: 100%; 
}

/* --- Contenedor tipo cover --- */
.cover {
  min-height: 100vh; 
  width: 100%;
  

  display: flex; 
  justify-content: center; 
  align-items: center;    
  

  padding: 20px; 
  box-sizing: border-box; 
}

/* --- Caja principal --- */
.container {
  width: 100%;
  max-width: 900px; 
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(192, 39, 39, 0.2);
  padding: 40px 60px;
  box-sizing: border-box;
  text-align: center;
}

/* --- Encabezado --- */
.header {
  margin-bottom: 25px;
}

.top-image {

}

.top-image img {
  height: 100px;
  width: auto;
}

.header h1 {
  color: #c02727;
  font-size: 2.2rem;
  margin: 10px 0 5px;
}

.header h2 {
  color: #c02727;
  font-size: 1.2rem;
  margin-top: 5px;
}

/* --- Texto principal --- */
.content {
  text-align: center;
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* --- Botones --- */
.buttons {
  text-align: center;
  margin-top: 0px;
}

.buttons button {
  background-color: #c02727;
  color: white;
  border: none;
  padding: 12px 25px;
  margin: 8px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.buttons button:hover {
  background-color: #a51f1f;
}

/* --- Botón azul --- */
#secondary-button {
  background-color: #004aad;
}

#secondary-button:hover {
  background-color: #00398a;
}

/* --- Responsividad --- */
@media (max-width: 768px) {
  .container {
    padding: 15px;
    border-radius: 8px;
  }

  .header h1 {
    font-size: 1.8rem;
  }

  .header h2 {
    font-size: 1.1rem;
  }

  .content {
    font-size: 0.95rem;
  }
  img{
  width: 100%;} 

  .buttons button {
    width: 90%;
    margin: 10px 0;
  }
}

