h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
}

#main-content-paso1 p {
    color: #333;
    /* Cambiando a un gris oscuro para mejor contraste con fondo blanco */
    margin-bottom: 10px;
}

.sorteo-caja {
    background-color: #fff;
    /* Fondo blanco como se indicó */
    color: #333;
    /* Color de texto general dentro de la caja */
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 300px;
    margin-bottom: 20px;
}

.sorteo-caja h3 {
    margin-top: 0;
    color: #007bff;
    /* Azul para el título del sorteo */
}

.sorteo-caja strong {
    color: #555;
    /* Un gris más oscuro para el texto en negrita */
}

.sorteo-caja a {
    display: block;
    background-color: #ff9800;
    color: #fff;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

.sorteo-caja a:hover {
    background-color: #e68a00;
}

.error {
    color: red;
    margin-top: 10px;
    text-align: center;
}

.alert {
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 5px;
    background-color: rgb(249, 198, 198);
    color: black;
}

.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 8px;
    /* Ajusta el valor según lo necesites */
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    font-weight: bold;
    line-height: 1.8;
    /* Incrementa el interlineado. El valor 1.8 equivale */
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    line-height: 1.8;
    /* Incrementa el interlineado. El valor 1.8 equivale */
}

.mb-3 {
    margin-bottom: 16px;
    /* Ajusta el valor según lo necesites */
}

.form-label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    line-height: 1.8;
}

/* .form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
} */

.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background-color: rgb(255, 140, 0);
    /* Color azul similar a Bootstrap */
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.btn:hover {
    background-color: rgb(179, 39, 0);
    /* Un tono más oscuro al pasar el mouse */
}

.mb-4 {
    margin-bottom: 24px;
    /* 1.5rem */
}




.enlace-dorado {
    display: inline-block;
    text-align: center;
    margin: 10px;
    text-decoration: none;
}

.enlace-dorado img {
    height: 40px;
    transition: transform 0.2s ease;
    cursor: pointer;
}

.enlace-dorado:hover img {
    transform: scale(1.05);
}

/* ✨ Texto dorado siempre visible */
.enlace-dorado span {
    display: block;
    margin-top: 5px;
    color: gold;
    font-weight: bold;
    font-size: 9px;
    text-shadow: 0 0 3px #ffd700;
}

/* estilos para el modal de youtube */

/* Estilos base */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #222;
    color: #fff;
}

/* Estilos para el modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    position: relative;
    margin: 5% auto;
    padding: 20px;
    width: 80%;
    max-width: 900px;
}

.close {
    position: absolute;
    top: -30px;
    right: 0;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Estilos para la página */
#hero {
    padding: 20px;
    text-align: center;
}

h1 {
    font-size: 2em;
    margin-bottom: 10px;
    color: gold;
}

p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 10px;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin: 10px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #ffc107;
    color: #000;
}

.btn-primary:hover {
    background-color: #e0a800;
}

.btn-outline {
    background-color: transparent;
    color: #fff;
    border: 2px solid #ffc107;
}

.btn-outline:hover {
    background-color: #ffc107;
    color: #000;
}

.lista-bingo {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.lista-bingo li {
    margin-bottom: 10px;
    line-height: 1.6;
}