html {font-size: 62.5%; box-sizing: border-box;}
*, *:before, *:after {box-sizing: inherit; margin:0px; padding: 0px;}

body {font-size: 16px; margin: 0 auto; max-width: 1024px; font-family: Arial, Helvetica, sans-serif; min-height: 100vh; display: flex; flex-direction: column;}

header {background-color:#183F00; display: flex; justify-content: space-between;
    margin: 0%; gap: 50px; padding: 10px 20px 10px 20px; align-items: center;
    box-shadow: 0 12px 24px rgba(0, 0, 10, 0.6);}

@media (max-width: 720px) {
    .Encabezado {
        flex-direction: column;
        gap: 1.2rem;
        padding: 1.4rem 1rem;
        text-align: center;
    }

    .Encabezado img {
        max-width: 180px;
        height: auto;
    }

    .Encabezado h1 {
        font-size: 1.35rem;
        line-height: 1.3;
    }

    .Encabezado h2 {
        font-size: 1.2rem;
        line-height: 1.2;
    }
}

h1 {color:white; font-size: 1.5rem ; font-weight:100;}

h2 {color:white;}

.Bienvenido {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem auto 1.1rem auto;
    padding: 1rem 2.4rem;
    border-radius: 0.9rem;
    font-size: 2.7rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    color: #f5ffef;
    background: linear-gradient(180deg, #1f8f5e 0%, #14603f 100%);
    border: 1px solid rgba(255, 255, 255, 0.22);
    text-shadow: 0 1px 0 #0b3f29, 0 2px 0 #0b3f29, 0 8px 14px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28),
                inset 0 -2px 0 rgba(0, 0, 0, 0.2),
                0 5px 0 #0f4b32,
                0 10px 18px rgba(0, 0, 0, 0.28);
    transform: perspective(650px) rotateX(4deg);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.Bienvenido:hover {
    transform: perspective(650px) rotateX(2.5deg) translateY(-1px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32),
                inset 0 -2px 0 rgba(0, 0, 0, 0.2),
                0 6px 0 #0f4b32,
                0 12px 20px rgba(0, 0, 0, 0.3);
}

.Bienvenido h1 {
    font-size: 3rem;
    font-weight: 800;
    margin: 0;
    text-align: center;
    color: inherit;
    line-height: 1.2;
}

.Bienvenido h1:last-child {
    font-size: 2.2rem;
    font-weight: 600;
    opacity: 0.88;
    letter-spacing: 0.04em;
}

.IconoBienvenida {
    color: #b7f06a;
    font-size: 2.6rem;
    text-shadow: 0 1px 0 #2e5a12, 0 5px 9px rgba(0, 0, 0, 0.28);
    transform: translateY(-1px);
}

@media (max-width: 480px) {
    .Bienvenido {
        width: 90%;
        font-size: 2rem;
        line-height: 1.25;
        padding: 0.85rem 1.1rem;
    }

    .Bienvenido h1 {
        font-size: 2.2rem;
    }

    .Bienvenido h1:last-child {
        font-size: 1.7rem;
    }

    .IconoBienvenida {
        font-size: 2.2rem;
    }
}

.QuinielaClienteH2 {color:white; text-align: center; padding: 10px;}
.QuinielaClienteP {text-align:center; color: red; font-weight: bold; font-size: 30px;}
.QuinielaClienteH3 {text-align:center; color:yellow;}
.QuinielaClienteH4 {text-align:center; color:lightblue;}
.AgregarCarritoForm {
    display: flex;
    justify-content: center;
    margin: 1.2rem 0 0.8rem 0;
}

.BotonAgregarCarrito {
    background: linear-gradient(160deg, #38c172 0%, #1f8a4d 100%);
    color: #ffffff;
    padding: 1rem 1.8rem;
    border: 1px solid #136736;
    border-radius: 1rem;
    font-weight: 700;
    font-size: 1.4rem;
    cursor: pointer;
    box-shadow: 0 4px 0 #136736, 0 10px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.BotonAgregarCarrito:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
}

.BotonAgregarCarrito:active {
    transform: translateY(3px);
    box-shadow: 0 2px 0 #136736, 0 6px 10px rgba(0, 0, 0, 0.25);
}

.BotonQuitarCarrito {
    background: linear-gradient(160deg, #e3342f 0%, #9b1c1c 100%);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border: 1px solid #7b1111;
    border-radius: 0.6rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 3px 0 #7b1111, 0 6px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.BotonQuitarCarrito:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.BotonQuitarCarrito:active {
    transform: translateY(2px);
    box-shadow: 0 1px 0 #7b1111, 0 4px 6px rgba(0, 0, 0, 0.25);
}

.MensajeCarrito {
    width: min(100%, 700px);
    margin: 1.2rem auto;
    padding: 1rem 1.2rem;
    border-radius: 0.8rem;
    text-align: center;
    font-weight: 700;
    color: white;
}

.MensajeCarrito.exito {
    background-color: rgba(38, 173, 87, 0.9);
    border: 1px solid #1f8a4d;
}

.MensajeCarrito.error {
    background-color: rgba(196, 51, 51, 0.92);
    border: 1px solid #9f2121;
}

.MensajeCarrito.info {
    background-color: rgba(40, 115, 190, 0.92);
    border: 1px solid #1f5b95;
}

.TableCarrito {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

@media (max-width: 720px) {
    .TableCarrito {
        width: 48%;
    }
}

.Table { 
    border-collapse: separate;
    border-spacing: 2px;
    width: 80%; 
    margin: auto; 
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 
                0 5px 15px rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    overflow: hidden;
}
.Th, .Td { 
    border: 1px solid #444; 
    padding: 12px; 
    text-align: center;
    position: relative;
}
.Th { 
    background: linear-gradient(135deg, #333 0%, #555 100%);
    color: white;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3),
                inset 0 -1px 2px rgba(0, 0, 0, 0.5),
                0 4px 8px rgba(0, 0, 0, 0.3);
}
.Td {
    color: #FFD700;
    font-weight: 700;
    background: linear-gradient(180deg, #228B22 0%, #1a6b1a 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2),
                inset 0 -2px 4px rgba(0, 0, 0, 0.4),
                0 3px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease;
}
.Td:hover {
    transform: translateY(-2px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2),
                inset 0 -2px 4px rgba(0, 0, 0, 0.4),
                0 6px 12px rgba(0, 0, 0, 0.4);
}

    
    
.BarraContenedora {width: auto;}
.NavegacionSuperior {background-color:blue;
         display: flex; gap: 50px; justify-content: center;
         border: 1px solid darkblue;
         box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4),
                     0 8px 0 darkblue,
                     0 12px 16px rgba(0, 0, 0, 0.3);}
    
nav a {color: white; text-decoration:none; font-weight: 700; font-size: 1.5rem; padding: 1rem}
    
.NavegacionSuperior a:hover {background-color:orange; color:#000000}
    
@media (max-width: 480px) {.NavegacionSuperior {gap: 40px; font-size: 1.5rem;}}


    
.ClaseMain {background-image: url(../Imagenes/Pasto.png); min-height: 100vh; background-size: cover;
        background-repeat: no-repeat; background-position: center center; background-attachment: fixed; padding-bottom: 7rem;}
    
    
.QuinielaDeLaSemana {color: white; padding: 10px 0; text-align: center; font-size: 2.1rem;}
    
.Quiniela fieldset {border: none;}

.PA1 {width: auto; display:flex; flex-direction: column; align-items: center; background-color: darkorange;
        color:#183F00; font-weight:400; font-size: 1.4rem; padding: 0.5rem; margin-bottom: 0rem}
        
.PartidoGoles {width: auto; display:grid; grid-template-columns: repeat(2, 1fr); display: flex; justify-content:space-between;
        align-items: center; background-color: darkorange;
            color:blue; font-weight:400; font-size: 1.2rem; padding: 0.5rem; gap: 15px}

/* BotÃƒÂ³n "Adquirir Quiniela" */
            
.EnviarQuiniela {position: relative; display: flex; justify-content: center; align-items: center;}

.BotonEnviar {background-color:blue; color:chartreuse; padding: 1rem 3rem; 
                      margin-top: 1rem; font-size: 1.5rem; text-decoration: none; text-transform: uppercase; 
                      font-weight: bold; border-radius: 1rem; width: auto; text-align: center; 
                      border: 1px solid darkblue;
                      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4),
                                  0 4px 0 darkblue,
                                  0 8px 12px rgba(0, 0, 0, 0.3);
                      transition: all 0.1s;
                      cursor: pointer;}
                 
/*.BotonEnviar:hover {}  */

.BotonEnviar:active {transform: translateY(4px);
                     box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4),
                                 0 0 0 darkblue,
                                 0 2px 4px rgba(0, 0, 0, 0.3);}

/*Formulario*/

.AlinearCentro {display: flex; flex-direction: column; align-items: center;}

/*formulario adquirir quiniela*/

.Formulario {background-color: darkolivegreen; width: 400px; margin-top:50px; padding: 1rem;
     border-radius: 10px;
     border: 1px solid darkgreen;
     box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4),
                 0 4px 0 darkgreen,
                 0 8px 12px rgba(0, 0, 0, 0.3);
     transition: all 0.1s;}

@media (max-width: 720px) {
    .Formulario {
        width: 380px;
    }
}

.Formulario:hover {transform: translateY(-2px);
                   box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4),
                               0 6px 0 darkgreen,
                               0 12px 16px rgba(0, 0, 0, 0.4);}

.Formulario:active {transform: translateY(2px);
                    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4),
                                0 2px 0 darkgreen,
                                0 4px 6px rgba(0, 0, 0, 0.3);}
     
.Formulario fieldset {border: none;}
     
.Formulario legend {text-align: center; font-size: 15px; text-transform: uppercase; font-weight: 700;
     margin-bottom: 2rem; color:orange;}

.Campo {margin-bottom: 1rem;}

.Campo label {color: white; font-weight: bold; margin-bottom: .5rem; display:block}
     
.Texto-Registrate {text-align: center; color: white; padding-top: 20px; font-weight: 900;}
.Texto-Registrate a,
.RecuperarContraseña a {
    display: inline-block;
    width: min(100%, 360px);
    box-sizing: border-box;
    margin-top: 10px;
    padding: 12px 22px;
    font-size: 18px;
    font-weight: 800;
    text-align: center;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: linear-gradient(160deg, #ffe96c 0%, #ffcf34 46%, #efb100 100%);
    box-shadow:
        0 8px 0 #b78400,
        0 15px 24px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.75),
        inset 0 -8px 16px rgba(0, 0, 0, 0.16);
    transform: translateY(0) perspective(700px) rotateX(6deg);
    transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.Texto-Registrate a:hover,
.RecuperarContraseña a:hover {
    filter: brightness(1.05);
    transform: translateY(-4px) perspective(700px) rotateX(0deg);
    box-shadow:
        0 12px 0 #b78400,
        0 20px 30px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.82),
        inset 0 -8px 16px rgba(0, 0, 0, 0.12);
}

.Texto-Registrate a:active,
.RecuperarContraseña a:active {
    transform: translateY(3px) perspective(700px) rotateX(4deg);
    box-shadow:
        0 4px 0 #b78400,
        0 10px 16px rgba(0, 0, 0, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.Texto-Registrate a:focus-visible,
.RecuperarContraseña a:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.9);
    outline-offset: 4px;
}

.RecuperarContraseña {text-align: center; color: white; padding-top: 40px; font-weight: 900;}


.EntradaTexto {width: 100%; border: none; padding: 1.5rem; border-radius: .5rem;}


.CampoRadio label {color: white; font-weight: bold; margin: auto;}

/* Estilo personalizado para radio buttons */
input[type="radio"] {
    -webkit-appearance: none;
    appearance: none;
    width: 1.6rem;
    height: 1.6rem;
    min-width: 1.6rem;
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    position: relative;
    cursor: pointer;
    outline: none;
    margin-right: 0.6rem;
    vertical-align: middle;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

input[type="radio"]::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.9rem;
    height: 0.9rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.15s ease-in-out;
}

input[type="radio"]:checked {
    background: rgba(0, 128, 255, 0.2);
    border-color: #53b4ff;
}

input[type="radio"]:checked::before {
    transform: translate(-50%, -50%) scale(1);
}

input[type="radio"]:focus-visible {
    box-shadow: 0 0 0 0.35rem rgba(83, 180, 255, 0.3);
}

input[type="radio"] + span,
input[type="radio"] + strong,
input[type="radio"] + em,
input[type="radio"] + label,
input[type="radio"] + b {
    color: white;
    font-weight: 700;
}

input[type="radio"] + span {
    margin-right: 1rem;
}

/* AgrupaciÃƒÂ³n profesional de opciones */
.PartidoAJugar,
[class^="GolesAnotados"] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.PartidoGoles {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

.PartidoAJugar {
    gap: 1rem;
}

.PartidoAJugar input[type="radio"],
[class^="GolesAnotados"] input[type="radio"] {
    margin-right: 0.35rem;
}

.PartidoAJugar {
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

[class^="GolesAnotados"] {
    background: rgba(255, 255, 255, 0.08);
}

[class^="GolesAnotados"] input[type="radio"] {
    margin-right: 0.4rem;
}

/*Alinear al centro el enlace "Olvidaste tu contraseÃƒÂ±a da click aqui"*/
.OlvidasteContraseÃƒÂ±a {text-align: center; text-decoration: underline 2px; margin-top: 20px; margin-bottom: 10px;}


/*Alinear al centro los botones de "Ingresar" y "Registrarme" */
.PonerAlCentro {display: flex; justify-content: center; }

/* Estilos para CampoRadio */
.CampoRadio {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.CampoRadio label {
    color: white;
    font-weight: bold;
}

/* Estilos para AvisoPrivacidad (checkbox) */
.AvisoPrivacidad {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    margin-bottom: 1rem;
    gap: 10px;
}

/* Estilos para el footer */
footer {
    text-align: center;
    color: white;
    font-family: Arial, sans-serif;
    font-weight: 500;
    padding: 1rem 1.5rem;
    background: transparent;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1024px;
    box-sizing: border-box;
    z-index: 1000;
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.75);
}

footer p {
    margin: 0;
    line-height: 1.6;
    font-size: 1.2rem;
}

/* ========== ESTILOS PARA AVISO DE PRIVACIDAD ========== */

.PrivacidadContenedor {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 1rem;
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.PrivacidadEncabezado {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    width: 100%;
}

.PrivacidadEncabezado i {
    font-size: 3.5rem;
    color: #FFD700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    animation: bounceIn 0.8s ease-out;
}

@keyframes bounceIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.PrivacidadEncabezado h2 {
    color: #FFD700;
    font-size: 3.2rem;
    font-weight: bold;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
    text-align: center;
    letter-spacing: 0.05em;
}

.PrivacidadIntroduccion {
    background: rgba(24, 63, 0, 0.85);
    border-left: 5px solid #FFD700;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    width: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    animation: slideInLeft 0.6s ease-out 0.1s both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.PrivacidadIntroduccion p {
    color: #E8E8E8;
    font-size: 1.3rem;
    line-height: 1.8;
    margin: 0;
}

.PrivacidadIntroduccion strong {
    color: #FFD700;
    font-weight: bold;
}

.PrivacidadSeccion {
    background: linear-gradient(135deg, rgba(32, 139, 34, 0.9) 0%, rgba(24, 63, 0, 0.95) 100%);
    border: 2px solid #FFD700;
    border-radius: 12px;
    padding: 1.8rem;
    margin-bottom: 1.5rem;
    width: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: slideInUp 0.6s ease-out forwards;
    opacity: 0;
}

.PrivacidadSeccion:nth-child(3) { animation-delay: 0.1s; }
.PrivacidadSeccion:nth-child(4) { animation-delay: 0.2s; }
.PrivacidadSeccion:nth-child(5) { animation-delay: 0.3s; }
.PrivacidadSeccion:nth-child(6) { animation-delay: 0.4s; }
.PrivacidadSeccion:nth-child(7) { animation-delay: 0.5s; }
.PrivacidadSeccion:nth-child(8) { animation-delay: 0.6s; }
.PrivacidadSeccion:nth-child(9) { animation-delay: 0.7s; }
.PrivacidadSeccion:nth-child(10) { animation-delay: 0.8s; }

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.PrivacidadSeccion:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: #FFED4E;
}

.PrivacidadTitulo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid #FFD700;
}

.PrivacidadTitulo i {
    font-size: 2rem;
    color: #FFD700;
    min-width: 2rem;
    text-align: center;
    animation: rotate 0.8s ease-out;
}

@keyframes rotate {
    from {
        transform: rotate(-30deg);
        opacity: 0;
    }
    to {
        transform: rotate(0deg);
        opacity: 1;
    }
}

.PrivacidadTitulo h3 {
    color: #FFD700;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0;
    letter-spacing: 0.03em;
}

.PrivacidadLista {
    list-style: none;
    padding: 0;
    margin: 0;
}

.PrivacidadLista li {
    color: #E8E8E8;
    font-size: 1.4rem;
    line-height: 1.8;
    padding: 0.8rem 0 0.8rem 2.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.PrivacidadLista li:before {
    content: "\2714";
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: bold;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.PrivacidadLista li:hover {
    color: #FFD700;
    padding-left: 2.8rem;
}

.PrivacidadSeccion p {
    color: #E8E8E8;
    font-size: 1.4rem;
    line-height: 1.8;
    margin: 0.8rem 0;
}

.PrivacidadSeccion p strong {
    color: #FFD700;
    font-weight: bold;
}

.PrivacidadUltima {
    border: 2px dashed #FFD700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(32, 139, 34, 0.9) 100%);
}

.PrivacidadActualizacion {
    color: #FFD700;
    font-size: 0.95rem;
    font-style: italic;
    font-weight: bold;
    margin-top: 1rem !important;
    text-align: right;
}

/* ========== ESTILOS PARA TÃƒâ€°RMINOS Y CONDICIONES ========== */

.TerminosContenedor {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 1rem;
    animation: fadeInUp 0.6s ease-out;
}

.TerminosEncabezado {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    width: 100%;
}

.TerminosEncabezado i {
    font-size: 3.5rem;
    color: #FF6B6B;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    animation: bounceIn 0.8s ease-out;
}

.TerminosEncabezado h2 {
    color: #FF6B6B;
    font-size: 3.2rem;
    font-weight: bold;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
    text-align: center;
    letter-spacing: 0.05em;
}

.TerminosIntroduccion {
    background: rgba(24, 63, 0, 0.85);
    border-left: 5px solid #FF6B6B;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    width: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    animation: slideInLeft 0.6s ease-out 0.1s both;
}

.TerminosIntroduccion p {
    color: #E8E8E8;
    font-size: 1.3rem;
    line-height: 1.8;
    margin: 0;
}

.TerminosIntroduccion strong {
    color: #FF6B6B;
    font-weight: bold;
}

.TerminosSeccion {
    background: linear-gradient(135deg, rgba(32, 139, 34, 0.9) 0%, rgba(24, 63, 0, 0.95) 100%);
    border: 2px solid #FF6B6B;
    border-radius: 12px;
    padding: 1.8rem;
    margin-bottom: 1.5rem;
    width: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: slideInUp 0.6s ease-out forwards;
    opacity: 0;
}

.TerminosSeccion:nth-child(3) { animation-delay: 0.1s; }
.TerminosSeccion:nth-child(4) { animation-delay: 0.2s; }
.TerminosSeccion:nth-child(5) { animation-delay: 0.3s; }
.TerminosSeccion:nth-child(6) { animation-delay: 0.4s; }
.TerminosSeccion:nth-child(7) { animation-delay: 0.5s; }
.TerminosSeccion:nth-child(8) { animation-delay: 0.6s; }
.TerminosSeccion:nth-child(9) { animation-delay: 0.7s; }
.TerminosSeccion:nth-child(10) { animation-delay: 0.8s; }

.TerminosSeccion:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: #FF8888;
}

.TerminosTitulo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid #FF6B6B;
}

.TerminosTitulo i {
    font-size: 2rem;
    color: #FF6B6B;
    min-width: 2rem;
    text-align: center;
    animation: rotate 0.8s ease-out;
}

.TerminosTitulo h3 {
    color: #FF6B6B;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0;
    letter-spacing: 0.03em;
}

.TerminosLista {
    list-style: none;
    padding: 0;
    margin: 0;
}

.TerminosLista li {
    color: #E8E8E8;
    font-size: 1.4rem;
    line-height: 1.8;
    padding: 0.8rem 0 0.8rem 2.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.TerminosLista li:before {
    content: "\25B8";
    position: absolute;
    left: 0;
    color: #FF6B6B;
    font-weight: bold;
    font-size: 1.5rem;
}

.TerminosLista li:hover {
    color: #FF6B6B;
    padding-left: 2.8rem;
}

.TerminosSeccion p {
    color: #E8E8E8;
    font-size: 1.4rem;
    line-height: 1.8;
    margin: 0.8rem 0;
}

.TerminosSeccion p strong {
    color: #FF6B6B;
    font-weight: bold;
}

.TerminosSeccion .sub-titulo {
    color: #FF6B6B;
    font-weight: bold;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.TerminosUltima {
    border: 2px dashed #FF6B6B;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(32, 139, 34, 0.9) 100%);
}

@keyframes ErrorEntradaPremium {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.Error {
    width: 100%;
    margin-top: 1.6rem;
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: linear-gradient(140deg, rgba(113, 17, 17, 0.94) 0%, rgba(150, 30, 30, 0.94) 48%, rgba(93, 11, 11, 0.94) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16),
                0 12px 20px rgba(0, 0, 0, 0.35);
    animation: ErrorEntradaPremium 0.35s ease-out;
}

.Error ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.Error li {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    color: #fff4f4;
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: 0.015em;
    padding: 0.95rem 1rem;
    border-radius: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, rgba(0, 0, 0, 0.16) 100%);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.ErrorIcono {
    width: 2.1rem;
    min-width: 2.1rem;
    height: 2.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #5d0909;
    background: radial-gradient(circle at 30% 30%, #fff6f6 0%, #ffd6d6 70%, #ffbcbc 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7),
                0 2px 8px rgba(0, 0, 0, 0.24);
}

.ContrasenaIncorrecta {
    border-left: 4px solid #ffb482;
}

.UsuarioNoRegistrado {
    border-left: 4px solid #ffe08f;
}

.ErroresRegistro {
    border-left: 4px solid #ffd79d;
}

.ResultadosYGanadores {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1.2rem auto 0 auto;
    color: white;
    font-weight: 700;
    font-size: 1.4rem;
    text-align: center;
}

.BotonResultados {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    margin-top: 0.8rem;
    padding: 1rem 2.4rem;
    border-radius: 0.9rem;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 0.025em;
    text-decoration: none;
    text-transform: uppercase;
    color: #fff8e1;
    background: linear-gradient(180deg, #c47f00 0%, #8a5500 100%);
    border: 1px solid rgba(255, 255, 255, 0.22);
    text-shadow: 0 1px 0 #5a3500, 0 2px 4px rgba(0,0,0,0.35);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.28),
                inset 0 -2px 0 rgba(0,0,0,0.2),
                0 5px 0 #5a3500,
                0 10px 18px rgba(0,0,0,0.32);
    transform: perspective(600px) rotateX(4deg);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    cursor: pointer;
}

.BotonResultados:hover {
    transform: perspective(600px) rotateX(2deg) translateY(-2px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.32),
                inset 0 -2px 0 rgba(0,0,0,0.2),
                0 7px 0 #5a3500,
                0 14px 22px rgba(0,0,0,0.38);
    color: #fff;
}

.BotonResultados:active {
    transform: perspective(600px) rotateX(4deg) translateY(4px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.22),
                inset 0 -1px 0 rgba(0,0,0,0.2),
                0 1px 0 #5a3500,
                0 3px 6px rgba(0,0,0,0.3);
}

.BotonGanadores {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    margin-top: 0.8rem;
    padding: 1rem 2.4rem;
    border-radius: 0.9rem;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 0.025em;
    text-decoration: none;
    text-transform: uppercase;
    color: #e8ffdd;
    background: linear-gradient(180deg, #1f8f5e 0%, #14603f 100%);
    border: 1px solid rgba(255, 255, 255, 0.22);
    text-shadow: 0 1px 0 #0b3f29, 0 2px 4px rgba(0,0,0,0.35);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.28),
                inset 0 -2px 0 rgba(0,0,0,0.2),
                0 5px 0 #0f4b32,
                0 10px 18px rgba(0,0,0,0.32);
    transform: perspective(600px) rotateX(4deg);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    cursor: pointer;
}

.BotonGanadores:hover {
    transform: perspective(600px) rotateX(2deg) translateY(-2px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.32),
                inset 0 -2px 0 rgba(0,0,0,0.2),
                0 7px 0 #0f4b32,
                0 14px 22px rgba(0,0,0,0.38);
    color: #fff;
}

.BotonGanadores:active {
    transform: perspective(600px) rotateX(4deg) translateY(4px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.22),
                inset 0 -1px 0 rgba(0,0,0,0.2),
                0 1px 0 #0f4b32,
                0 3px 6px rgba(0,0,0,0.3);
}


/* ===== Boton Pagar 3D ===== */
.ContenedorBotonPagar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.TextoBotonPagar {
    margin: 0;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    text-align: center;
}

.BotonPagar {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.9rem 2.5rem;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 1rem;
    color: #e8ffdd;
    background: linear-gradient(180deg, #c9a227 0%, #8a6a0d 100%);
    border: 1px solid rgba(255,255,255,0.2);
    text-shadow: 0 1px 0 #5c4408, 0 2px 4px rgba(0,0,0,0.35);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), inset 0 -2px 0 rgba(0,0,0,0.2), 0 5px 0 #5c4408, 0 10px 18px rgba(0,0,0,0.32);
    transform: perspective(600px) rotateX(4deg);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    cursor: pointer;
}

.BotonPagar:hover {
    transform: perspective(600px) rotateX(2deg) translateY(-2px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.35), inset 0 -2px 0 rgba(0,0,0,0.2), 0 7px 0 #5c4408, 0 14px 22px rgba(0,0,0,0.38);
    color: #fff;
}

.BotonPagar:active {
    transform: perspective(600px) rotateX(4deg) translateY(4px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.22), inset 0 -1px 0 rgba(0,0,0,0.2), 0 1px 0 #5c4408, 0 3px 6px rgba(0,0,0,0.3);
}
/* ===== Preguntas Frecuentes ===== */
.FaqContenedor {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    max-width: 860px;
    margin: 2rem auto;
    padding: 2rem 1rem;
}

.FaqEncabezado {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    width: 100%;
}

.FaqEncabezado i {
    font-size: 3.5rem;
    color: #FFD700;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    animation: bounceIn 0.8s ease-out;
}

.FaqEncabezado h2 {
    color: #FFD700;
    font-size: 3.2rem;
    font-weight: bold;
    text-shadow: 0 3px 10px rgba(0,0,0,0.5);
    text-align: center;
    letter-spacing: 0.05em;
}

.FaqIntroduccion {
    background: rgba(24,63,0,0.85);
    border-left: 5px solid #FFD700;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    width: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    animation: slideInLeft 0.6s ease-out 0.1s both;
}

.FaqIntroduccion p {
    color: #E8E8E8;
    font-size: 1.3rem;
    line-height: 1.8;
    margin: 0;
}

.FaqSeccion {
    background: linear-gradient(135deg, rgba(32,139,34,0.9) 0%, rgba(24,63,0,0.95) 100%);
    border: 2px solid #FFD700;
    border-radius: 12px;
    padding: 1.8rem;
    margin-bottom: 1.5rem;
    width: 100%;
    box-shadow: 0 8px 25px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.1);
    transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
    animation: slideInUp 0.6s ease-out forwards;
    opacity: 0;
}

.FaqSeccion:nth-child(3) { animation-delay: 0.1s; }
.FaqSeccion:nth-child(4) { animation-delay: 0.2s; }
.FaqSeccion:nth-child(5) { animation-delay: 0.3s; }
.FaqSeccion:nth-child(6) { animation-delay: 0.4s; }
.FaqSeccion:nth-child(7) { animation-delay: 0.5s; }
.FaqSeccion:nth-child(8) { animation-delay: 0.6s; }

.FaqSeccion:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255,215,0,0.3), inset 0 1px 0 rgba(255,255,255,0.2);
    border-color: #FFED4E;
}

.FaqTitulo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid #FFD700;
}

.FaqTitulo i {
    font-size: 2rem;
    color: #FFD700;
    min-width: 2rem;
    text-align: center;
}

.FaqTitulo h3 {
    color: #FFD700;
    font-size: 1.8rem;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
    margin: 0;
}

.FaqSeccion p {
    color: #E8E8E8;
    font-size: 1.3rem;
    line-height: 1.8;
    margin: 0.6rem 0 0;
}

.FaqSeccion strong {
    color: #FFD700;
}

.FaqLista {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.FaqLista li {
    color: #E8E8E8;
    font-size: 1.3rem;
    line-height: 1.8;
    padding: 0.6rem 0 0.6rem 2.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.FaqLista li::before {
    content: "\25B8";
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: bold;
    font-size: 1.5rem;
}

.FaqLista li:hover {
    color: #FFD700;
    padding-left: 2.8rem;
}

.FaqLista strong {
    color: #FFD700;
}

.FaqUltima {
    margin-bottom: 2.5rem;
}
