    /*
Theme Name: Pomana Child
Template: pomana
Theme URI: https://pomana.modeltheme.com/
Description: Lottery & Giveaways WordPress Theme
Version: 1.9.4
Author: ModelTheme
Author URI: http://modeltheme.com/
Tags: custom-header, custom-menu, featured-images, post-formats, sticky-post
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pomana
*/

/******************************************************************************************/
/* ESTILO PARA BOTON GET YOUR TICKET FLOTANTE */
/******************************************************************************************/

/* Botón flotante en la esquina derecha */
body .floating-button {
    position: fixed;
    right: 20px; /* Ajusta la distancia desde la derecha */
    bottom: 110px; /* Ajusta la altura desde abajo */
    background-color: #6fc11d; /* Color verde */
    color: white;
    padding: 12px 25px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    z-index: 9999; /* Asegura que esté por encima de otros elementos */
    display: none; /* Ocultarlo por defecto */
}

/* Efecto hover */
body .floating-button:hover {
    background-color: #0a0707; /* Cambia a negro al pasar el mouse */
    color: white;
}

/* Mostrar botón flotante SOLO en las páginas específicas */
.page-id-27023 .floating-button,
.page-id-27305 .floating-button,
.page-id-27346 .floating-button,
.page-id-27386 .floating-button,
.page-id-27448 .floating-button,
.page-id-27471 .floating-button,
.page-id-27705 .floating-button {
    display: block !important;
}

/******************************************************************************************/
/* ESTILOS EN HOME PARA WINNERS */
/******************************************************************************************/
.home-winners-carousel {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Centra los elementos */
    gap: 20px; /* Espacio entre tarjetas */
    max-width: 1200px;
    margin: auto;
}

.home-winner-card {
    flex: 1 1 calc(33.33% - 20px); /* Cada tarjeta ocupa 1/3 del contenedor con espacio entre ellas */
    max-width: calc(33.33% - 20px); /* Asegurar que no se agranden más de 1/3 */
    background: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.home-winner-img {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

@media (max-width: 992px) {
    .home-winner-card {
        flex: 1 1 50%; /* En pantallas medianas, dos columnas */
        max-width: 50%;
    }
}

@media (max-width: 600px) {
    .home-winner-card {
        flex: 1 1 100%; /* En móviles, una sola columna */
        max-width: 100%;
    }
}

/******************************************************************************************/
/* ESTILOS EN HOME PARA HOW YOUR ENTRY MAKES A DIFFERENCE */
/******************************************************************************************/
.home-impact-container {
    display: flex; /* Activa el modo de flexbox */
    align-items: center; /* Alinea verticalmente */
    justify-content: space-between; /* Espaciado entre los elementos */
    max-width: 1000px; /* Ajusta el ancho máximo */
    margin: auto;
    gap: 40px; /* Espacio entre la imagen y el texto */
}

.home-impact-image {
    flex: 1; /* Ocupa el 50% del ancho */
    text-align: left; /* Asegura que la imagen se alinee a la izquierda */
}

.home-impact-image img {
    width: 100%; /* Ajusta la imagen para que ocupe todo el espacio disponible */
    max-width: 500px; /* Evita que se agrande demasiado */
    border-radius: 10px;
}

.home-impact-text {
    flex: 1; /* Ocupa el 50% del ancho */
    text-align: left; /* Alinea el texto a la izquierda */
}

/* Botón */
.cta-button {
    display: inline-block;
    padding: 12px 20px;
    background: #ff6a00;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 20px;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #e65c00;
}

/* 📱 CELULARES (pantallas pequeñas, hasta 767px) */
@media screen and (max-width: 767px) {
    .home-impact-container {
        flex-direction: column; /* Cambia a diseño vertical */
        text-align: center; /* Centra los elementos */
        gap: 20px; /* Reduce el espacio entre elementos */
    }

    .home-impact-image,
    .home-impact-text {
        flex: none; /* Evita que ocupen 50% */
        width: 100%; /* Asegura que ocupen todo el ancho */
        text-align: center; /* Centra el texto */
    }

    .home-impact-image img {
        max-width: 80%; /* Reduce el tamaño de la imagen */
        margin: auto; /* Centra la imagen */
    }

    .cta-button {
        display: block;
        width: fit-content;
        margin: 20px auto; /* Centra el botón */
    }
}

/* 📲 TABLETAS (768px - 1024px) */
@media screen and (max-width: 1024px) {
    .home-impact-container {
        flex-direction: column; /* También en tabletas, se ve mejor en vertical */
        text-align: center;
        gap: 30px;
    }

    .home-impact-image,
    .home-impact-text {
        width: 90%;
        text-align: center;
    }

    .home-impact-image img {
        max-width: 85%;
    }
}


/******************************************************************************************/
/* ESTILO DE SUSCRIBE AL NEWSLETTER DE LA PARTE INFERIOR DE LAS PAGINAS ANTES DEL FOOTER */
/******************************************************************************************/

.newsletter-section {
    text-align: center;
    background: #f9f9f9;
    padding: 50px 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.newsletter-section h2 {
    font-size: 40px;
    font-weight: bold;
    color: #0a0707;
}

.newsletter-section p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: auto;
}

.newsletter-section input[type="email"] {
    padding: 10px;
    width: 250px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.newsletter-section button {
    background: #ff6a00;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}

.newsletter-section button:hover {
    background: #cc5500;
}

/* 🔹 RESPONSIVE DESIGN 🔹 */

/* 📱 CELULARES (pantallas pequeñas, hasta 767px) */
@media screen and (max-width: 767px) {
    .newsletter-section {
        padding: 40px 15px;
    }

    .newsletter-section h2 {
        font-size: 30px;
    }

    .newsletter-section p {
        font-size: 16px;
    }

    /* 📩 Hacer que el input y el botón se apilen */
    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }

    .newsletter-section input[type="email"] {
        width: 100%;
        max-width: 350px;
    }

    .newsletter-section button {
        width: 100%;
        max-width: 200px;
    }
}

/* 📲 TABLETAS (768px - 1024px) */
@media screen and (max-width: 1024px) {
    .newsletter-section {
        padding: 45px 20px;
    }

    .newsletter-section h2 {
        font-size: 35px;
    }

    .newsletter-section p {
        font-size: 17px;
    }

    .newsletter-section input[type="email"] {
        width: 90%;
        max-width: 350px;
    }

    .newsletter-section button {
        width: auto;
        padding: 12px 20px;
    }
}

/******************************************************************************************/
/* CARRUSEL DE WINNERS DE ACTIVE RAFFELS */
/******************************************************************************************/

/* Contenedor principal del carrusel */
.winners-carousel-container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    position: relative;
}

/* Ajustar todas las columnas al mismo tamaño */
.winner-item {
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Ajustar la imagen para que todas sean del mismo tamaño */
.winner-item img {
    width: 100%;
    max-height: 220px;
    object-fit: cover;
    border-radius: 10px;
}

/* Ajustar la posición de las flechas fuera del área de las columnas */
.swiper-button-prev, .swiper-button-next {
    color: #ff6a00 !important;
    width: 50px !important;
    height: 50px !important;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-button-prev {
    left: -60px !important;
}

.swiper-button-next {
    right: -60px !important;
}

/* Ajustar la paginación (los puntos) más abajo */
.swiper-pagination {
    margin-top: 30px !important;
    position: relative !important;
}

/* 🔹 RESPONSIVE DESIGN 🔹 */

/* TABLETAS: Ajustar a 2 columnas */
@media screen and (max-width: 1024px) {
    .winners-carousel-container {
        max-width: 90%;
    }

    .winner-item {
        flex: 1 1 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }

    .swiper-button-prev {
        left: -40px !important;
    }

    .swiper-button-next {
        right: -40px !important;
    }
}

/* CELULARES GRANDES (480px - 767px): Solo 1 columna */
@media screen and (max-width: 767px) {
    .winner-item {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .swiper-button-prev {
        left: -20px !important;
    }

    .swiper-button-next {
        right: -20px !important;
    }

    /* Hacer que los puntos de paginación no estén tan lejos */
    .swiper-pagination {
        margin-top: 10px !important;
    }
}

/* CELULARES PEQUEÑOS (hasta 480px): Reducir tamaño de todo */
@media screen and (max-width: 480px) {
    .winner-item {
        padding: 15px;
    }

    .winner-item h3 {
        font-size: 20px;
    }

    .winner-item p {
        font-size: 16px;
    }

    .swiper-button-prev, .swiper-button-next {
        width: 40px !important;
        height: 40px !important;
    }

    .swiper-pagination {
        margin-top: 5px !important;
    }
}

/******************************************************************************************/
/* ESTILOS DEL CARRUSEL DE RAFFLES QUE MUESTRA LAS PROPIEDADES EN RIFA */
/******************************************************************************************/

/* 📌 Contenedor general */
.raffle-carousel-container {
    text-align: center;
    margin: auto;
    max-width: 1200px;
}

.raffle-title {
    font-size: 36px;
    font-weight: bold;
    color: #333;
}

.raffle-title span {
    color: #FF6600;
}

.raffle-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

/* 📌 Carrusel */
.raffle-carousel {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

/* 📌 Tarjetas */
.swiper-slide {
    display: flex;
    justify-content: center;
}

.raffle-card {
    width: 100%;
    max-width: 350px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s;
    background: #fff;
    padding: 15px;
    text-align: center;
}

.raffle-card:hover {
    transform: translateY(-5px);
}

.raffle-img {
    border-radius: 10px;
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* 📌 Contenido de la tarjeta */
.raffle-card-title {
    font-size: 20px;
    font-weight: bold;
    margin-top: 10px;
}

.raffle-price,
.raffle-date {
    font-size: 16px;
    color: #444;
}

.raffle-countdown {
    font-size: 16px;
    font-weight: bold;
    color: #FF6600;
    margin-bottom: 10px;
}

/* 📌 Botón */
.raffle-btn {
    display: inline-block;
    padding: 12px 20px;
    background: #6fc11d;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 10px;
    transition: background 0.3s;
}

.raffle-btn:hover {
    background: #5ea314;
}

/* 📌 Flechas de navegación */
.swiper-button-prev,
.swiper-button-next {
    color: #FF6600;
}

/* 📌 Paginación */
.swiper-pagination {
    position: relative;
    margin-top: 15px;
}

/* 📌 RESPONSIVE */
@media (max-width: 1024px) {
    .raffle-carousel-container {
        padding: 0 20px;
    }

    .raffle-card {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .raffle-title {
        font-size: 28px;
    }

    .raffle-card {
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .raffle-title {
        font-size: 24px;
    }

    .raffle-card {
        max-width: 100%;
    }
}

/******************************************************************************************/
/* ESTILO PARA CARRITO DE COMPRAS - CART */
/******************************************************************************************/

/* Asegurar que la página ocupa al menos toda la pantalla */
.raffle-cart-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Contenedor principal del carrito */
#raffle-cart-container {
    flex-grow: 1; /* Hace que el contenido empuje el footer hacia abajo */
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 40px auto;
}

/* Footer en el pie de página */
.site-footer {
    margin-top: auto;
    width: 100%;
}

/* 📄 Contenido en DOS COLUMNAS */
.cart-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px; /* Espacio entre la imagen y los detalles */
}

.cart-image-container {
    flex: 1.2; /* La imagen ocupará un poco más de espacio */
    max-width: 50%; /* Evita que sea demasiado grande */
}

/* Imagen del carrito */
.cart-image {
    width: 100%;
    border-radius: 15px;
}
    
/* Contenedor de los detalles */
.cart-details {
    flex: 1; /* Ocupará el espacio restante */
    text-align: left;
    max-width: 50%;
}

/* 🛒 Botones en FILA */
.cart-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    margin-top: 20px;
}

/* Botones Checkout y Cancel */
.cart-buttons button,
.cart-buttons a {
    padding: 12px 24px;
    border-radius: 12px; /* menos redondeado */
    font-weight: bold;
    color: white;
    font-size: 16px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: none;
    transition: all 0.3s ease;
}

/* ✅ Botones estilizados */
/* Verde (Proceed to Checkout) */
.btn-cart-success {
    background-color: #6fc11d;
}

.btn-cart-success:hover {
    background-color: #5aa915;
}

/* Rojo (Cancel) */
.btn-cart-danger {
    background-color: #e74c3c;
}

.btn-cart-danger:hover {
    background-color: #c0392b;
}

/* Ajuste de título de propiedad */
.cart-details h2 {
    font-size: 26px;
    margin-bottom: 10px;
}

/* ========================== */
/* 📱 RESPONSIVE DESIGN */
/* ========================== */
@media (max-width: 1024px) {
    .cart-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .cart-image {
        width: 100%;
        max-width: 100%;
    }

    .cart-details {
        text-align: center;
    }

    .cart-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}
    
/******************************************************************************************/
/* ESTILO PARA FAQ MORE QUESTIONS */
/******************************************************************************************/
   
.faq-contact-block {
  background-color: #fff4e6;
  border: 2px solid #ffb347;
  border-radius: 16px;
  padding: 30px;
  margin-top: 60px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}

.faq-contact-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
}

.faq-contact-img {
  width: 60px;
  height: auto;
  border-radius: 12px;
}

.faq-contact-text h2 {
  font-size: 26px;
  color: #e65c00;
  margin-bottom: 10px;
}

.faq-contact-text p {
  font-size: 18px;
  color: #333;
  margin-bottom: 15px;
}

.faq-contact-btn {
  background-color: #e65c00;
  color: white;
  padding: 12px 25px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
  display: inline-block;
}

.faq-contact-btn:hover {
  background-color: #cc4b00;
}

/******************************************************************************************/
/* ESTILO PARA ANIMACIÓN DE BÓMBOLA EN LIVE DRAWS */
/******************************************************************************************/

/* 🎯 CONTENEDOR PRINCIPAL */

#live-draw-container {
    background: radial-gradient(circle at center, #1e1e1e, #000);
    border-radius: 25px;
    padding: 50px 20px;
    margin: 30px auto;
    max-width: 960px;
}

#draw-animation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1000px;
    height: 450px;
    margin: 30px auto;
    background: radial-gradient(#222, #000);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    padding: 40px;
    box-sizing: border-box;
}

/* 🎱 BÓMBOLA GIRATORIA */
.drum {
    width: 300px;
    height: 300px;
    border: 6px solid #ff6600;
    border-radius: 50%;
    background: radial-gradient(circle at center, #444 30%, #111 100%);
    animation: spinDrum 1s linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

@keyframes spinDrum {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 🎟️ TICKETS VOLANDO DENTRO DE LA BÓMBOLA */
.tickets-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
}
.tickets-wrapper div {
    position: absolute;
    background: white;
    color: black;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    transform: rotate(15deg);
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    animation: float 2s infinite ease-in-out;
}
@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

/* 🎉 TICKET GANADOR CENTRADO */
#winner-ticket {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    font-weight: bold;
    color: white;
    background: rgba(255, 102, 0, 0.9);
    padding: 20px 40px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    z-index: 999;
}


.ticket-box {
    background: #ff6600;
    color: white;
    padding: 40px 60px;
    border-radius: 16px;
    box-shadow: 0 0 30px rgba(0,0,0,0.4);
    text-align: center;
    font-family: Arial, sans-serif;
}
.ticket-box .emoji {
    font-size: 40px;
    margin-bottom: 10px;
}
.ticket-box .text {
    font-size: 28px;
    font-weight: bold;
}
.ticket-box .number {
    font-size: 48px;
    font-weight: bold;
}

.ticket-box .emoji i {
    color: #ffcc00;
    font-size: 48px;
    margin-bottom: 10px;
}

/* 🎊 MENSAJE DE FELICITACIONES A LA DERECHA */
#congrats-message {
    display: none;
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    animation: fadeIn 1s ease-in-out forwards;
}

.congrats-box {
    background: orange;
    padding: 20px 30px;
    border-radius: 12px;
    text-align: center;
    color: white;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
}
.congrats-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 8px;
}
.congrats-subtitle {
    font-size: 18px;
}

.congrats-subtitle i {
    color: gold;
    margin-left: 8px;
    font-size: 20px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 🚫 MENSAJE SI NO HAY SORTEO */
.no-live-overlay {
    position: relative;
    width: 800px;
    height: 450px;
    margin: auto;
    background: url("http://raffle7.construflip.com/wp-content/uploads/2025/03/LifeDraw2.jpg") no-repeat center center;
    background-size: cover;
    border-radius: 10px;
}
.no-live-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 28px;
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    background: rgba(0, 0, 0, 0.5);
    padding: 15px 30px;
    border-radius: 5px;
    text-align: center;
}

.waiting-draw-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    text-align: center;
    color: white;
    padding: 30px;
}

.waiting-draw-content {
    text-align: center;
    color: white;
    padding: 30px;
}

.draw-info {
    font-size: 22px;
    margin-bottom: 10px;
}

.draw-date {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}
.draw-countdown {
    font-size: 26px;
    font-weight: bold;
    color: #ffc107;
    margin-top: 10px;
}

.countdown-label {
    color: white;
    margin-right: 8px;
}

.countdown-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 40px 0;
}

.countdown-wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 40px 0;
}

/******************************************************************************************/
/* ESTILO PARA HISTÓRICO DE SORTEOS */
/******************************************************************************************/

/* 🔹 Estilos para la sección de sorteos pasados */
#raffle-history-section {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.raffle-history-title {
    font-size: 32px;
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    font-weight: bold;
    position: relative;
}

.raffle-history-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: #ff6a00;
    display: block;
    margin: 10px auto 0 auto;
    border-radius: 4px;
}

.raffle-result {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
    transition: background-color 0.3s ease;
}

.raffle-result:last-child {
    border-bottom: none;
}

.raffle-result:hover {
    background-color: #fafafa;
}

.raffle-result h3 {
    font-size: 24px;
    color: #222;
    margin-bottom: 10px;
}

.raffle-result p {
    font-size: 16px;
    color: #555;
    margin: 6px 0;
}

.raffle-result strong {
    color: #000;
}

.no-past-raffles {
    text-align: center;
    padding: 40px 20px;
    color: #777;
}

.no-raffles-icon {
    width: 60px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.no-raffles-text {
    font-size: 20px;
    font-weight: 500;
    color: #666;
}

/******************************************************************************************/
/* ESTILOS PARA SECCION PROMO LIVE DRAW EN LA PAGINA ACTIVE RAFFLES */
/******************************************************************************************/

.live-draw-promo {
  background-image: url('http://raffle7.construflip.com/wp-content/uploads/2025/03/LifeDraw2.jpg');
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  border-radius: 20px;
  margin-top: 40px;
  margin-bottom: 60px;
  overflow: hidden;
}

.live-draw-promo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Oscurece la imagen */
  z-index: 0;
}

.live-draw-promo .overlay {
  position: relative;
  z-index: 1;
  color: #fff;
}

.live-draw-promo h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  font-weight: bold;
}

.live-draw-button {
  background-color: #ff6600;
  color: #fff;
  padding: 20px 50px; /* Aumentamos el tamaño del botón */
  font-size: 2.0rem;   /* Aumentamos el tamaño del texto */
  text-decoration: none;
  border-radius: 50px;
  transition: background-color 0.3s ease;
  font-weight: 700; /* Más negrita */
  box-shadow: 0 8px 20px rgba(255, 102, 0, 0.4); /* Sombra para hacerlo más llamativo */
}


.live-draw-button:hover {
  background-color: #e65c00;
}

/*==========================================================================*/
/* ESTILOS PARA EL CONTACT FORM my_contact_form */
/*==========================================================================*/

.contact-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background: #f7f7f7;
    text-align: center;
}

.contact-title {
    font-size: 50px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
    color: #0a0707;
    width: 100%;
    display: block;
}

h2.contact-title {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
}

.contact-subtitle {
    font-size: 20px;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.contact-info-centered {
    text-align: center;
    font-size: 18px;
    color: #555;
}

.contact-info-centered h3 {
    color: #ff6600;
    font-size: 24px;
    margin-bottom: 15px;
}

.contact-info-centered .social-icons a {
    font-weight: bold;
    text-decoration: none;
    color: #ff6600;
    margin: 0 10px;
}

.contact-info-centered .social-icons a:hover {
    color: #e65400;
}

.contact-map {
    margin-top: 30px;
}

.contact-map iframe {
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.highlight-orange {
    color: #ff6600;
}

/* Contact Form 7 */
.wpcf7 input,
.wpcf7 textarea {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

.wpcf7-submit::after {
    content: "\f1d8"; /* Ícono Font Awesome paper-plane */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 10px;
}

.contact-form {
    max-width: 100%;
}

.wpcf7-mail-sent-ok {
  border: 2px solid #28a745;
  background-color: #eafbee;
  color: #155724;
  padding: 15px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  margin-top: 20px;
}

/*==========================================================================*/
/* ESTILOS PARA CARRITO DEL MENU */
/*==========================================================================*/
.header_mini_cart {
  padding: 15px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  width: 320px;
  z-index: 9999;
}

.mini-cart-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mini-cart-item {
  display: flex;
  margin-bottom: 15px;
}

.mini-cart-thumb img {
  width: 60px;
  height: auto;
  border-radius: 4px;
}

.mini-cart-content {
  margin-left: 10px;
  font-size: 14px;
}

.mini-cart-title {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
  color: #333;
  text-decoration: none;
}

.mini-cart-total {
  font-size: 16px;
  font-weight: bold;
  margin-top: 10px;
  border-top: 1px solid #eee;
  padding-top: 10px;
}

.mini-cart-buttons .button {
  background-color: #ff6600 !important;
  color: #fff !important;
  border-radius: 6px;
  font-weight: bold;
  padding: 12px 18px !important;
  font-size: 15px;
  display: inline-block;
  width: 48%;
  text-align: center;
  text-transform: uppercase;
  transition: background 0.3s ease-in-out;
  border: none;
}

.mini-cart-buttons .button:hover {
  background-color: #e65400 !important;
}

.mini-cart-buttons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 15px;
}

.top-cart,
.header_mini_cart {
    display: none !important;
}

/*==========================================================================*/
/* ESTILOS PARA LA PAGINA SPONSORS */
/*==========================================================================*/

.sponsors-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 50px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
}

.sponsors-section h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 30px;
  color: #222;
}

.sponsors-section .highlight-orange {
  color: #ff6600;
}

.sponsors-section h3 {
  font-size: 24px;
  margin-top: 35px;
  color: #222;
}

.sponsors-section p {
  font-size: 16px;
  line-height: 1.7;
  margin-top: 10px;
}

.sponsors-section ul {
  margin-top: 15px;
  padding-left: 20px;
  list-style-type: disc;
}

.sponsors-section ul li {
  margin-bottom: 10px;
  font-size: 16px;
}

.sponsor-call-to-action {
  background: #fff5e6;
  border: 1px solid #ffd699;
  padding: 30px;
  margin-top: 40px;
  text-align: center;
  border-radius: 10px;
}

.sponsor-call-to-action p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #444;
}

.sponsor-button {
  background-color: #ff6600;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: background 0.3s;
}

.sponsor-button:hover {
  background-color: #e65c00;
}

.sponsors-slider-section {
  padding: 40px 20px;
  text-align: center;
  background: #f7f7f7;
}

.sponsors-slider-section h2 {
  font-size: 36px;
  margin-bottom: 30px;
  color: #222;
}

.highlight-orange {
  color: #ff6600;
}

.sponsors-swiper {
  max-width: 1000px;
  margin: auto;
}

.sponsors-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sponsors-swiper .swiper-slide img {
  width: 150px;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s;
}

.sponsors-swiper .swiper-slide img:hover {
  filter: grayscale(0%);
}

.become-sponsor-section {
  padding: 60px 20px;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.become-sponsor-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #222;
}

.become-sponsor-section p {
  font-size: 16px;
  margin-bottom: 30px;
  color: #555;
}

.sponsor-form {
  text-align: left;
  background: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.sponsor-form label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
}

.sponsor-form input,
.sponsor-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

/*==========================================================================*/
/* ESTILOS PARA SECCION PIE DE PAGINA INVITACION A REGISTRARSE */
/*==========================================================================*/

.raffle-subscribe-section {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    padding: 60px 20px;
    text-align: center;
}

.raffle-subscribe-box {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.subscribe-title {
    font-size: 32px;
    color: #222;
    margin-bottom: 20px;
}

.subscribe-text {
    font-size: 18px;
    margin-bottom: 25px;
    color: #444;
}

.subscribe-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.subscribe-benefits li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
}

.subscribe-btn {
    background-color: #ff6600;
    color: white;
    padding: 14px 30px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    display: inline-block;
    transition: background 0.3s ease;
}

.subscribe-btn:hover {
    background-color: #e65c00;
}

.join-note {
    font-size: 14px;
    color: #666;
    margin-top: 20px;
}

.join-note a {
    color: #ff6600;
    text-decoration: underline;
}

/*==========================================================================*/
/* ESTILOS MINIMALISTAS PARA INVITACION A REGISTRARSE */
/*==========================================================================*/
.raffle-subscribe-minimal {
    background: #fffaf4;
    border: 1px solid #ffe2c4;
    padding: 40px 20px;
    margin: 40px auto;
    max-width: 800px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.subscribe-minimal-content h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
}

.subscribe-minimal-content h2 .orange {
    color: #ff6600;
}

.subscribe-minimal-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.subscribe-minimal-btn {
    background: #ff6600;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.subscribe-minimal-btn:hover {
    background: #e65c00;
}

