/* Para que el contenedor principal no esté pegado al techo */
body {
    background-color: #4b0082;
    background-image: linear-gradient(135deg, #4b0082 0%, #2a0045 100%);
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0;
    /* padding: 20px; */
}
/* Estilos adicionales para forzar la igualdad y el centrado */
.welcome-card {
  background: rgba(255, 255, 255, 0.96);
  color: #333;
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  max-width: 600px;
  width: 100%;
  text-align: center;
  border: 2px solid #ffc107;
  position: relative;
  height: 100%; /* Obliga a la card a llenar el alto de la columna */
  display: flex;
  flex-direction: column;
  justify-content: center; /* Centra el contenido verticalmente */
  align-items: center;    /* Centra el contenido horizontalmente */
}
.header-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 10px;
}
.logo-main {
    max-width: 180px;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}
h1 {
    font-family: 'Playfair Display', serif;
    color: #4b0082;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.8rem;
}
h3 {
    font-family: 'Playfair Display', serif;
    color: #4b0082;
    font-weight: 300;
    margin-bottom: 15px;
    font-size: 1.4rem;
}
.parroquia-name {
    color: #8b0000;
    font-weight: bold;
    text-transform: uppercase;
}
.highlight-box {
    background-color: #f9f6ff;
    border-left: 5px solid #ffc107;
    padding: 20px;
    border-radius: 10px;
    margin: 25px 0;
    text-align: left;
}
.btn-start {
    background-color: #4b0082;
    color: white;
    border: none;
    padding: 16px 45px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 6px 15px rgba(75, 0, 130, 0.3);
}
.btn-start:hover {
    background-color: #ffc107;
    color: #4b0082;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4);
}
.footer-note {
    font-size: 0.85rem;
    color: #777;
    margin-top: 25px;
    font-style: italic;
}