/* Colores ParticipayGanaya actualizados:
    Naranja Principal: #FF9800
    Naranja Intenso: #FF5722  
    Naranja Claro: #FFB74D
    Naranja Oscuro: #E65100
    Blanco: #FFFFFF
    Gris Claro: #F5F5F5
*/

html, body {
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

html {
    scroll-padding-top: 95px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #2c3e50;
    line-height: 1.6;
    background: linear-gradient(135deg, #FFFFFF 0%, #F5F5F5 100%);
    padding-top: 85px;
}

/* --- Estilos de la cabecera (Header) --- */
.header {
    background: url('https://participaayganaya.com/img/regalo.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    
    width: 100%;
    height: calc(100vh - 85px);
    
    position: relative;
    overflow: hidden;
    
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    padding: 0;
    z-index: 1;
}

/* Overlay naranja sutil */
.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 152, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.header-content-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 2;
}

.header-title-section {
    width: 100%;
    text-align: center;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
    padding: 0;
    z-index: 3;
}

.header-onlycars-logo-png {
    max-width: 25%;
    height: auto;
    margin-bottom: 30px;
    z-index: 3;
    filter: drop-shadow(0 0 20px rgba(255, 152, 0, 0.4));
    
    animation: logoEntrance 2s ease-out forwards, logoFloating 4s ease-in-out 2s infinite;
}

.header-main-text,
.header-year-text {
    display: none;
}

.principal-link {
    margin-top: 0;
    font-size: 1.2em;
    padding: 15px 40px;
    z-index: 3;
    background: linear-gradient(45deg, #FF9800 0%, #FF5722 50%, #E65100 100%);
    color: #FFFFFF;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.4),
                0 0 30px rgba(255, 87, 34, 0.3);
    border: 2px solid transparent;
    background-clip: padding-box;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.principal-link:hover {
    background: linear-gradient(45deg, #FF5722 0%, #FF9800 50%, #E65100 100%);
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 152, 0, 0.6),
                0 0 50px rgba(255, 87, 34, 0.5);
}

.header > .container {
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    z-index: 2;
}

.header-main-image {
    display: none;
}

/* --- Estilos de la Navbar --- */
.navbar {
    border-top: 8px solid rgba(255, 152, 0, 0.8);
    border-bottom: 2px solid rgba(255, 152, 0, 0.3);
    background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FA 100%);
    padding: 10px 0;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar-container {
    padding: 0 15px;
}

.navbar-brand-logo img {
    width: 120px;
    height: auto;
    max-height: none;
    filter: drop-shadow(0 0 5px rgba(255, 152, 0, 0.2));
    transition: all 0.3s ease;
}

.navbar-brand-logo:hover img {
    filter: drop-shadow(0 0 8px rgba(255, 152, 0, 0.4));
    transform: scale(1.02);
}

.navbar-toggler {
    color: #FF5722;
    border: 2px solid #FF5722;
    background: rgba(255, 87, 34, 0.1);
    transition: all 0.3s ease;
    padding: 6px 10px;
}

.navbar-toggler:hover {
    background: rgba(255, 87, 34, 0.2);
    border-color: #FF9800;
}

.navbar-toggler i {
    font-size: 1.2em;
    color: #FF5722;
}

.navbar-collapse {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.navbar-nav .nav-item .nav-link {
    padding: 15px 15px;
    color: #2c3e50;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.1em;
    position: relative;

    display: flex;
    align-items: center;
    height: 100%;
}

.navbar-nav .nav-item .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #FF9800, #FF5722);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-item .nav-link:hover {
    color: #FF5722 !important;
    text-shadow: 0 0 8px rgba(255, 87, 34, 0.5);
}

.navbar-nav .nav-item .nav-link:hover::after {
    width: 100%;
}

.nav-link-menu {
    margin: 0;
    padding: 0;
    color: #2c3e50 !important;
    font-weight: 600;
}

.navbar-nav .nav-item .nav-link:hover .nav-link-menu {
    color: #FF5722 !important;
}

.header-scrolled {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15),
                0 0 20px rgba(255, 152, 0, 0.2);
}

/* --- Estilos generales de botones --- */
.learn-more-btn,
button {
    background: linear-gradient(45deg, #FF9800 0%, #FF5722 50%, #E65100 100%);
    color: #FFFFFF;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    border: none;
    cursor: pointer;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.4),
                0 0 20px rgba(255, 87, 34, 0.3);
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.learn-more-btn::before,
button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.learn-more-btn:hover::before,
button:hover::before {
    left: 100%;
}

.learn-more-btn:hover,
button:hover {
    background: linear-gradient(45deg, #FF5722 0%, #FF9800 50%, #E65100 100%);
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 152, 0, 0.6),
                0 0 40px rgba(255, 87, 34, 0.5);
}

.btn-invert {
    background: linear-gradient(45deg, #FFFFFF 0%, #F5F5F5 100%) !important;
    color: #FF5722 !important;
    border: 2px solid #FF5722;
}

.btn-invert:hover {
    background: linear-gradient(45deg, #FF9800 0%, #FF5722 100%) !important;
    color: #FFFFFF !important;
    border-color: #FF5722;
}

/* --- Títulos de secciones --- */
.clients-section,
.blog-section,
.contact-section {
    padding-top: 80px;
    padding-bottom: 60px;
    text-align: center;
    background: linear-gradient(135deg, #FFFFFF 0%, #F5F5F5 50%, #FFFFFF 100%);
}

.clients-title-section,
.blog-title-section,
.contact-title-section {
    margin-bottom: 40px;
}

.clients-subtitle {
    font-size: 1.3em;
    color: #FF5722;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 87, 34, 0.3);
}

.clients-title,
.blog-title,
.contact-title {
    font-size: 3em;
    font-weight: 800;
    background: linear-gradient(45deg, #2c3e50 0%, #FF5722 50%, #FF9800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 15px;
    text-shadow: 0 0 20px rgba(255, 87, 34, 0.3);
}

/* --- Tarjetas de rifa (blog-post-card) --- */
.blog-post-card-container {
    padding: 15px;
}

.blog-post-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    border: 2px solid rgba(255, 152, 0, 0.3);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1),
                0 0 30px rgba(255, 152, 0, 0.2),
                inset 0 1px 0 rgba(255, 152, 0, 0.1);
    text-align: center;
    padding-bottom: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
}

.blog-post-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(45deg, #FF9800, #FF5722, #E65100);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-post-card:hover::before {
    opacity: 1;
}

.blog-post-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 152, 0, 0.8);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15),
                0 0 50px rgba(255, 152, 0, 0.4),
                inset 0 1px 0 rgba(255, 152, 0, 0.3);
}

.blog-post-icon.container-img-rifa {
    width: 100%;
    height: 200px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    position: relative;
}

.blog-post-icon.container-img-rifa::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(transparent, rgba(248, 249, 250, 0.8));
    pointer-events: none;
}

.blog-post-icon.container-img-rifa img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.blog-post-card:hover .blog-post-icon.container-img-rifa img {
    transform: scale(1.1);
}

.blog-post-title {
    font-size: 1.7em;
    background: linear-gradient(45deg, #2c3e50 0%, #FF5722 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    padding: 0 15px;
    font-weight: 700;
}

.blog-post-subtitle {
    font-size: 1.1em;
    color: #FF5722;
    margin-bottom: 20px;
    text-shadow: 0 0 5px rgba(255, 87, 34, 0.3);
}

.blog-post-card .learn-more-btn {
    margin-top: auto;
    display: inline-block;
    font-size: 1em;
    padding: 10px 25px;
}
/* --- Sección de Detalles de Rifa --- */
.raffle-details-section {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    border: 2px solid rgba(255, 152, 0, 0.4);
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1),
                0 0 50px rgba(255, 152, 0, 0.2),
                inset 0 1px 0 rgba(255, 152, 0, 0.1);
    padding: 40px;
    margin-top: 20px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 60px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.raffle-details-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(45deg, transparent, #FF5722, transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: -100%; }
}

.raffle-details-section h3 {
    background: linear-gradient(45deg, #2c3e50 0%, #FF5722 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8em;
    margin-bottom: 20px;
    margin-top: 30px;
    font-weight: 700;
}

.raffle-details-section h4 {
    color: #FF5722;
    font-size: 1.4em;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 87, 34, 0.3);
}

.raffle-ticket-selector {
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 152, 0, 0.3);
    margin-bottom: 20px;
}

.raffle-ticket-selector .ticket-counter {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.raffle-ticket-selector .btn-ticket-minus,
.raffle-ticket-selector .btn-ticket-plus {
    background: linear-gradient(45deg, #FF9800, #FF5722);
    color: #FFFFFF;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.8em;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.4);
}

.raffle-ticket-selector .btn-ticket-minus:hover,
.raffle-ticket-selector .btn-ticket-plus:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.6);
}

.raffle-ticket-selector .ticket-quantity {
    font-size: 2.5em;
    font-weight: bold;
    background: linear-gradient(45deg, #2c3e50 0%, #FF5722 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 87, 34, 0.3);
}

.raffle-ticket-selector p {
    font-size: 1.2em;
    color: #666666;
    margin-top: 10px;
}

.btn-confirm-quantity,
.btn-confirm-purchase,
.btn-verify-ticket {
    background: linear-gradient(45deg, #FF9800 0%, #FF5722 50%, #E65100 100%);
    color: #FFFFFF;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    border: none;
    cursor: pointer;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.4);
    font-size: 1.2em;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-confirm-quantity:hover,
.btn-confirm-purchase:hover,
.btn-verify-ticket:hover {
    background: linear-gradient(45deg, #FF5722 0%, #FF9800 50%, #E65100 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 152, 0, 0.6);
}

.raffle-personal-data {
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 152, 0, 0.3);
    margin-bottom: 20px;
}

.raffle-personal-data .form-group {
    margin-bottom: 15px;
}

.raffle-personal-data .form-control {
    border: 2px solid rgba(255, 152, 0, 0.3);
    padding: 12px 15px;
    border-radius: 8px;
    width: 100%;
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFAFA 100%);
    color: #2c3e50;
    transition: all 0.3s ease;
    font-size: 1.1em;
}

.raffle-personal-data .form-control::placeholder {
    color: #888888;
    opacity: 1;
}

.raffle-personal-data .form-control:focus {
    border-color: #FF5722;
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 87, 34, 0.2),
                0 0 20px rgba(255, 87, 34, 0.3);
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
}

.raffle-personal-data .form-control:hover:not(:focus) {
    border-color: rgba(255, 152, 0, 0.6);
    box-shadow: 0 0 10px rgba(255, 152, 0, 0.2);
}

.raffle-personal-data .country-code {
    flex: 0 0 auto;
    width: auto;
    padding: 12px 15px;
    border: 2px solid rgba(255, 152, 0, 0.3);
    border-radius: 8px 0 0 8px;
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFAFA 100%);
    color: #2c3e50;
    transition: all 0.3s ease;
}

.raffle-personal-data .country-code:focus {
    border-color: #FF5722;
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 87, 34, 0.2);
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
}

.raffle-personal-data .country-code:hover:not(:focus) {
    border-color: rgba(255, 152, 0, 0.6);
}

.raffle-personal-data .form-group.input-group input {
    border-left: none;
    border-radius: 0 8px 8px 0;
}

.raffle-payment-methods {
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 152, 0, 0.3);
    margin-bottom: 20px;
}

.raffle-payment-methods .payment-options {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.raffle-payment-methods .payment-option {
    cursor: pointer;
    padding: 15px;
    border: 2px solid rgba(255, 152, 0, 0.3);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 120px;
    height: 80px;
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFAFA 100%);
    position: relative;
    overflow: hidden;
}

.raffle-payment-methods .payment-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 152, 0, 0.2), transparent);
    transition: left 0.6s ease;
}

.raffle-payment-methods .payment-option:hover::before {
    left: 100%;
}

.raffle-payment-methods .payment-option img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    display: block;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.raffle-payment-methods .payment-option:hover img,
.raffle-payment-methods .payment-option.active img {
    filter: grayscale(0%) brightness(1.1);
}

.raffle-payment-methods .payment-option.active {
    border-color: #FF5722;
    box-shadow: 0 0 30px rgba(255, 87, 34, 0.5),
                inset 0 0 20px rgba(255, 87, 34, 0.1);
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
    transform: scale(1.05);
}

.raffle-payment-methods .payment-option:hover {
    border-color: rgba(255, 152, 0, 0.7);
    box-shadow: 0 0 25px rgba(255, 152, 0, 0.4);
    background: linear-gradient(135deg, #FFF8F0 0%, #FFE0B2 100%);
    transform: translateY(-3px);
}

.payment-details {
    margin-top: 20px;
    padding: 25px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    border-radius: 12px;
    border: 2px solid rgba(255, 152, 0, 0.3);
    text-align: left;
    box-shadow: inset 0 1px 0 rgba(255, 152, 0, 0.1);
}

.payment-details .contact-text {
    color: #666666;
}

.payment-details .contact-text strong {
    color: #FF5722;
    text-shadow: 0 0 5px rgba(255, 87, 34, 0.3);
}

.contact-text.link {
    overflow-x: auto;
    white-space: normal;
}

.raffle-payment-proof {
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 152, 0, 0.3);
    margin-bottom: 20px;
}

.raffle-payment-proof .form-control-file {
    margin-top: 10px;
    display: block;
    width: 100%;
    padding: 12px 15px;
    font-size: 1rem;
    line-height: 1.5;
    color: #2c3e50;
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFAFA 100%);
    background-clip: padding-box;
    border: 2px solid rgba(255, 152, 0, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.raffle-payment-proof .form-control-file:focus {
    border-color: #FF5722;
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 87, 34, 0.2);
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
}

.raffle-payment-proof .form-control-file:hover:not(:focus) {
    border-color: rgba(255, 152, 0, 0.6);
    box-shadow: 0 0 10px rgba(255, 152, 0, 0.2);
}

.raffle-payment-proof .form-check {
    margin-top: 15px;
    text-align: left;
}

.raffle-payment-proof .form-check-label {
    color: #666666;
    font-size: 0.9em;
}

.raffle-payment-proof .form-check-input {
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFAFA 100%);
    border: 2px solid rgba(255, 152, 0, 0.3);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 1.2em;
    height: 1.2em;
    border-radius: 4px;
    margin-top: 0.25em;
    margin-left: 0;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease;
}

.raffle-payment-proof .form-check-input:checked {
    background: linear-gradient(45deg, #FF9800, #FF5722);
    border-color: #FF5722;
}

.raffle-payment-proof .form-check-input:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FFFFFF;
    font-weight: bold;
    font-size: 0.9em;
}

.raffle-payment-proof .form-check-input:focus {
    box-shadow: 0 0 0 4px rgba(255, 87, 34, 0.3);
    outline: 0;
}

.raffle-confirm-consent {
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 152, 0, 0.3);
    margin-bottom: 20px;
}

.raffle-confirm-consent p {
    font-size: 0.9em;
    color: #666666;
    margin-top: 30px;
}

.raffle-confirm-consent a {
    color: #FF5722;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.raffle-confirm-consent a:hover {
    color: #FF9800;
    text-shadow: 0 0 8px rgba(255, 87, 34, 0.5);
}

.raffle-ticket-verifier {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid rgba(255, 152, 0, 0.3);
}

.raffle-ticket-verifier .form-control {
    margin-bottom: 15px;
}

.pagination-container {
    margin-top: 40px;
    text-align: center;
}

.pagination .page-item .page-link {
    color: #FF5722;
    border: 2px solid rgba(255, 152, 0, 0.5);
    margin: 0 5px;
    border-radius: 8px;
    transition: all 0.3s ease;
    padding: 10px 18px;
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFAFA 100%);
    font-weight: 600;
}

.pagination .page-item.active .page-link,
.pagination .page-item .page-link:hover {
    background: linear-gradient(45deg, #FF9800, #FF5722);
    color: #FFFFFF;
    border-color: #FF5722;
    box-shadow: 0 0 20px rgba(255, 152, 0, 0.4);
    transform: translateY(-2px);
}
.raffle-payment-proof .form-check-input {
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFAFA 100%);
    border: 2px solid rgba(255, 152, 0, 0.3);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 1.2em;
    height: 1.2em;
    border-radius: 4px;
    margin-top: 0.25em;
    margin-left: 0;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease;
}

.raffle-payment-proof .form-check-input:checked {
    background: linear-gradient(45deg, #FF9800, #FF5722);
    border-color: #FF5722;
}

.raffle-payment-proof .form-check-input:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FFFFFF;
    font-weight: bold;
    font-size: 0.9em;
}

.raffle-payment-proof .form-check-input:focus {
    box-shadow: 0 0 0 4px rgba(255, 87, 34, 0.3);
    outline: 0;
}

.raffle-confirm-consent {
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 152, 0, 0.3);
    margin-bottom: 20px;
}

.raffle-confirm-consent p {
    font-size: 0.9em;
    color: #666666;
    margin-top: 30px;
}

.raffle-confirm-consent a {
    color: #FF5722;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.raffle-confirm-consent a:hover {
    color: #FF9800;
    text-shadow: 0 0 8px rgba(255, 87, 34, 0.5);
}

.raffle-ticket-verifier {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid rgba(255, 152, 0, 0.3);
}

.raffle-ticket-verifier .form-control {
    margin-bottom: 15px;
}

.pagination-container {
    margin-top: 40px;
    text-align: center;
}

.pagination .page-item .page-link {
    color: #FF5722;
    border: 2px solid rgba(255, 152, 0, 0.5);
    margin: 0 5px;
    border-radius: 8px;
    transition: all 0.3s ease;
    padding: 10px 18px;
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFAFA 100%);
    font-weight: 600;
}

.pagination .page-item.active .page-link,
.pagination .page-item .page-link:hover {
    background: linear-gradient(45deg, #FF9800, #FF5722);
    color: #FFFFFF;
    border-color: #FF5722;
    box-shadow: 0 0 20px rgba(255, 152, 0, 0.4);
    transform: translateY(-2px);
}

.contact-section {
    background: linear-gradient(135deg, #FFFFFF 0%, #F5F5F5 50%, #FFFFFF 100%);
    padding: 80px 0;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 152, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.contact-title {
    background: linear-gradient(45deg, #2c3e50 0%, #FF5722 50%, #FF9800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 50px;
    font-size: 3em;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(255, 87, 34, 0.3);
}

.contact-text {
    color: #666666;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.contact-text img {
    vertical-align: middle;
    margin-right: 10px;
    width: 60px;
    height: auto;
    filter: drop-shadow(0 0 8px rgba(255, 152, 0, 0.3));
}

.contact-text.bank_name {
    font-weight: bold;
    color: #FF5722;
    font-size: 1.3em;
    margin-top: 15px;
    text-shadow: 0 0 10px rgba(255, 87, 34, 0.3);
}

.contact-text pre {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    color: #666666;
    white-space: pre-wrap;
}

.magic_button {
    background: linear-gradient(45deg, #FF9800, #FF5722);
    border: none;
    color: #FFFFFF;
    margin-left: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 600;
}

.magic_button:hover {
    background: linear-gradient(45deg, #FF5722, #FF9800);
    box-shadow: 0 0 15px rgba(255, 152, 0, 0.5);
}

.magic_button.copied {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: #FFFFFF;
}

.payment-method-cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 50px;
}

.payment-method-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    border: 2px solid rgba(255, 152, 0, 0.4);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1),
                0 0 30px rgba(255, 152, 0, 0.2);
    padding: 30px;
    text-align: center;
    width: 100%;
    max-width: 380px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    overflow: hidden;
}

.payment-method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(45deg, #FF9800, #FF5722, #E65100);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.payment-method-card:hover::before {
    opacity: 1;
}

.payment-method-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 152, 0, 0.8);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15),
                0 0 50px rgba(255, 152, 0, 0.4);
}

.payment-method-card .payment-logo img {
    max-width: 100px;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(255, 152, 0, 0.3));
}

.payment-method-card .contact-text {
    color: #666666;
    margin-bottom: 8px;
    font-size: 1em;
}

.payment-method-card .bank_name {
    font-size: 1.4em;
    font-weight: 700;
    background: linear-gradient(45deg, #FF5722 0%, #FF9800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 0;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 87, 34, 0.3);
}

.payment-method-card pre {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95em;
    line-height: 1.4;
    color: #666666;
    margin-bottom: 5px;
    white-space: pre-wrap;
}

.payment-method-card strong {
    display: block;
    margin-bottom: 8px;
    color: #FF5722;
    text-shadow: 0 0 5px rgba(255, 87, 34, 0.3);
}

.payment-method-card .magic_button {
    vertical-align: middle;
    margin-left: 5px;
    font-size: 1.1em;
}

/* --- Footer --- */
.footer-section {
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
    color: #2c3e50;
    padding: 60px 0 30px;
    position: relative;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(45deg, #FF9800, #FF5722, #E65100);
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: left;
}

.footer-logo,
.footer-subsection {
    padding: 15px;
    flex: 1 1 23%;
    min-width: 250px;
}

.footer-logo-img {
    width: 160px;
    height: auto;
    margin-top: 10px;
    filter: drop-shadow(0 0 8px rgba(255, 152, 0, 0.2));
}

.footer-subsection-title {
    font-size: 1.4em;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #FF5722 0%, #FF9800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 10px rgba(255, 87, 34, 0.2);
}

.footer-susection-text {
    font-size: 0.9em;
    line-height: 1.8;
    color: #666666;
}

.footer-susection-text img {
    max-width: 100%;
    height: auto;
    margin-top: 10px;
}

.footer-subsection-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-subsection-list li {
    margin-bottom: 12px;
    font-size: 0.9em;
    transition: transform 0.2s ease;
}

.footer-subsection-list li:hover {
    transform: translateX(5px);
}

.footer-subsection-list a {
    color: #2c3e50;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-subsection-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(45deg, #FF9800, #FF5722);
    transition: width 0.3s ease;
}

.footer-subsection-list a:hover {
    color: #FF5722;
    text-shadow: 0 0 8px rgba(255, 87, 34, 0.5);
}

.footer-subsection-list a:hover::after {
    width: 100%;
}

.footer-social-media-icons-section {
    margin-top: 25px;
}

.footer-social-media-icon {
    color: #2c3e50;
    font-size: 2em;
    margin-right: 20px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-social-media-icon:hover {
    color: #FF5722;
    text-shadow: 0 0 15px rgba(255, 87, 34, 0.6);
    transform: translateY(-3px);
}

.hidden {
    display: none !important;
}

.header-simple {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    padding: 25px 0;
    border-bottom: 3px solid #FF5722;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.header-simple .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.header-simple .logo-rifas {
    width: 140px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(255, 152, 0, 0.4));
}

.header-simple .page-title {
    background: linear-gradient(45deg, #2c3e50 0%, #FF5722 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.2em;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 0 20px rgba(255, 87, 34, 0.3);
}

.footer-simple {
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
    color: #2c3e50;
    padding: 25px 0;
    text-align: center;
    font-size: 0.9em;
    margin-top: 50px;
    border-top: 2px solid rgba(255, 152, 0, 0.3);
}

/* --- Animaciones ParticipayGanaya --- */
@keyframes logoEntrance {
    0% {
        opacity: 0;
        transform: scale(0.3) rotateY(180deg);
        filter: drop-shadow(0 0 0px rgba(255, 152, 0, 0));
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1) rotateY(90deg);
        filter: drop-shadow(0 0 25px rgba(255, 152, 0, 0.5));
    }
    100% {
        opacity: 1;
        transform: scale(1) rotateY(0deg);
        filter: drop-shadow(0 0 15px rgba(255, 152, 0, 0.3));
    }
}

@keyframes logoFloating {
    0% {
        transform: translateY(0px) scale(1);
        filter: drop-shadow(0 0 15px rgba(255, 152, 0, 0.3));
    }
    25% {
        transform: translateY(-8px) scale(1.02);
        filter: drop-shadow(0 0 20px rgba(255, 152, 0, 0.4));
    }
    50% {
        transform: translateY(0px) scale(1.01);
        filter: drop-shadow(0 0 25px rgba(255, 152, 0, 0.5)) drop-shadow(0 0 35px rgba(255, 87, 34, 0.2));
    }
    75% {
        transform: translateY(5px) scale(1);
        filter: drop-shadow(0 0 18px rgba(255, 152, 0, 0.35));
    }
    100% {
        transform: translateY(0px) scale(1);
        filter: drop-shadow(0 0 15px rgba(255, 152, 0, 0.3));
    }
}

/* Media Queries Responsive */
@media (max-width: 991px) {
    body {
        padding-top: 75px;
    }

    .header {
        height: calc(80vh - 75px);
        background: linear-gradient(
            135deg,
            rgba(255, 152, 0, 0.4) 0%,
            rgba(255, 87, 34, 0.3) 50%,
            rgba(255, 152, 0, 0.4) 100%
        ), url('https://participaayganaya.com/img/confeti-naranja.jpg');
    }

    .navbar-brand-logo img {
        width: 90px !important;
    }
    
    .header-onlycars-logo-png {
        max-width: 30% !important;
    }

    .navbar-collapse {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        padding: 15px 10px;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 10px;
        margin-top: 10px;
        border: 1px solid rgba(255, 152, 0, 0.3);
    }

    .navbar-nav .nav-item .nav-link {
        padding: 8px 12px;
        font-size: 0.95em;
        color: #2c3e50 !important;
        border-radius: 5px;
    }

    .navbar-nav .nav-item .nav-link:hover {
        background: rgba(255, 152, 0, 0.1);
        color: #FF5722 !important;
    }
}

@media (max-width: 767px) {
    body {
        padding-top: 65px;
    }

    .header {
        height: calc(70vh - 65px);
    }
    
    .navbar-brand-logo img {
        width: 80px !important;
    }
    
    .header-onlycars-logo-png {
        max-width: 40% !important;
    }
    
    .clients-title,
    .blog-title,
    .contact-title {
        font-size: 2.2em;
    }
    
    .blog-post-title {
        font-size: 1.4em;
    }

    .navbar {
        padding: 8px 0 !important;
    }

    .navbar-collapse {
        gap: 5px;
        padding: 10px;
    }

    .navbar-nav .nav-item .nav-link {
        padding: 6px 10px;
        font-size: 0.85em;
    }

    .payment-method-card {
        max-width: 320px;
        margin: 0 auto 25px auto;
    }
}

@media (max-width: 480px) {
    .navbar-brand-logo img {
        width: 70px !important;
    }
    
    .header-onlycars-logo-png {
        max-width: 50% !important;
    }
    
    .navbar-nav .nav-item .nav-link {
        padding: 5px 8px;
        font-size: 0.8em;
    }
}
/* === LOGO DEL NAVBAR (aumentar tamaño) === */
.navbar-brand-logo img {
    width: 180px !important;  /* Aumentado de 120px */
    height: auto;
    max-height: none;
    filter: drop-shadow(0 0 5px rgba(255, 152, 0, 0.2));
    transition: all 0.3s ease;
}

.navbar-brand-logo:hover img {
    filter: drop-shadow(0 0 8px rgba(255, 152, 0, 0.4));
    transform: scale(1.02);
}

/* === LOGO DEL HEADER CENTRAL (aumentar tamaño) === */
.header-onlycars-logo-png {
    max-width: 40% !important;  /* Aumentado de 25% */
    height: auto;
    margin-bottom: 30px;
    z-index: 3;
    filter: drop-shadow(0 0 20px rgba(255, 152, 0, 0.4));
    
    animation: logoEntrance 2s ease-out forwards, logoFloating 4s ease-in-out 2s infinite;
}

/* === RESPONSIVE AJUSTADO === */
@media (max-width: 991px) {
    .navbar-brand-logo img {
        width: 150px !important; /* Aumentado de 90px */
    }
    
    .header-onlycars-logo-png {
        max-width: 45% !important; /* Aumentado de 30% */
    }
}

@media (max-width: 767px) {
    .navbar-brand-logo img {
        width: 120px !important; /* Aumentado de 80px */
    }
    
    .header-onlycars-logo-png {
        max-width: 55% !important; /* Aumentado de 40% */
    }
}

@media (max-width: 480px) {
    .navbar-brand-logo img {
        width: 100px !important; /* Aumentado de 70px */
    }
    
    .header-onlycars-logo-png {
        max-width: 65% !important; /* Aumentado de 50% */
    }
}
/* === ParticipayGanaya: ajustes específicos para la página gracias === */
body.pg-thanks {
  /* Se fuerza fondo oscuro en la página de gracias sin afectar otras */
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%) !important;
  color: #ffffff !important;
}
.pg-card a.pg-btn { color:#000 !important; text-decoration:none !important; }
.pg-card a.pg-btn:hover { opacity:.95 !important; }

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    margin: 5% auto;
    padding: 0;
    border: 2px solid rgba(255, 152, 0, 0.3);
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 10px 30px rgba(255, 152, 0, 0.2);
    animation: modalSlideIn 0.3s ease-out;
    overflow: hidden;
}

@keyframes modalSlideIn {
    from { 
        transform: translateY(-50px);
        opacity: 0;
    }
    to { 
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    background: linear-gradient(45deg, #FF9800, #FF5722);
    color: white;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid rgba(255, 152, 0, 0.3);
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5em;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: white;
    background-clip: unset;
}

.modal-close {
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    padding: 0 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover,
.modal-close:focus {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.modal-body {
    padding: 25px;
}

.comprador-info {
    margin-bottom: 25px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 152, 0, 0.2);
    flex-wrap: wrap;
}

.info-row:last-child {
    border-bottom: none;
}

.info-row label {
    font-weight: bold;
    color: #FF5722;
    margin-bottom: 0;
    flex: 0 0 40%;
    min-width: 120px;
}

.info-row span {
    color: #2c3e50;
    flex: 1;
    text-align: right;
    word-break: break-word;
    margin-left: 10px;
}

.modal-actions {
    display: flex;
    justify-content: center;
    padding-top: 20px;
    border-top: 2px solid rgba(255, 152, 0, 0.2);
}

.whatsapp-modal-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    gap: 8px;
}

.whatsapp-modal-btn:before {
    content: "📱";
    font-size: 1.2em;
}

.whatsapp-modal-btn:hover {
    background: linear-gradient(45deg, #128C7E, #25D366);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    color: white;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .modal-header {
        padding: 15px 20px;
    }
    
    .modal-header h2 {
        font-size: 1.3em;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .info-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 0;
    }
    
    .info-row label {
        flex: none;
        margin-bottom: 5px;
    }
    
    .info-row span {
        flex: none;
        text-align: left;
        margin-left: 0;
        width: 100%;
    }
}

/* ========================= */
/*  AJUSTES MINIMOS AÑADIDOS */
/* ========================= */

/* 1) Cualquier <img> se adapta sin romper layouts */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* 2) Fix header en móviles: garantiza que se vea la imagen y evita el bug de 'fixed' */
@media (max-width: 991px) {
  .header {
    /* Si prefieres el confeti en móvil, cambia la URL aquí por confeti-naranja.jpg */
    background: url('https://participaayganaya.com/img/regalo.jpg') center / cover no-repeat !important;
    background-attachment: scroll !important;
  }
}



