/*RESET DEFAULT*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*ROOT*/
:root {
    --font: "Gaming";
    --font-var: "Round";
    --text-shadow-big: 0 0 2px #FFF, 
                    0 0 7px #4aff1869, 
                    0 0 50px #2bc700be;
    --text-shadow-little: 0 0 5px #FFF, 
                    0 0 10px #FFF, 
                    0 0 15px #FFF, 
                    0 0 20px #49ff18, 
                    0 0 30px #49FF18, 
                    0 0 40px #49FF18, 
                    0 0 55px #49FF18, 
                    0 0 75px #49ff18;
    --dark-green: #020800;
    --darker-green: #000000;
    --black: #050505;
    --green: #6FF927;
    --green-opacity: #71f9276c;
    --white-text: rgba(255, 255, 255, 0.814);
    --section-mb: 150px;
    --section-width: 1350px;
    --section-title-mb: 65px;
}

/*FONTS*/
@font-face {
    font-family: "Gaming";
    src: url("../fonts/gaming-font.woff2") format('woff2');
}

@font-face {
    font-family: "Round";
    src: url('../fonts/8d32c1b9a1cb4044370f57a0e920b203.woff2') format('woff2'),
        url('../fonts/8d32c1b9a1cb4044370f57a0e920b203.woff') format('woff');
}

/*SCROLLBAR*/
/*SCROLLBAR - Width*/
::-webkit-scrollbar {
width: 5px;
}

/*SCROLLBAR - Track*/
::-webkit-scrollbar-track {
background: transparent;
}

/*SCROLLBAR - Handle*/
::-webkit-scrollbar-thumb {
background: var(--green);
border-radius: 10px;
}

/*SCROLLBAR - Handle on hover*/
::-webkit-scrollbar-thumb:hover {
background: var(--green-opacity);
}

/*GENERAL RULESETS*/
::selection {
    background-color: transparent;
}

html {
    background-color: var(--black);
    overflow-x: hidden;
}

body {
    font-family: var(--font);
    color: white;
    position: relative;
    background-color: var(--black);
}

a {
    text-decoration: none;
}

h1,h2,h3,h4,h5,h6 {
    font-weight: 400;
}

h1 {
    font-family: "Round";
    font-size: 100px;
    color: var(--green);
    letter-spacing: 1.5px;
}

h2 {
    font-family: "Round";
    font-size: 70px;
    color: var(--green);
    letter-spacing: 1.5px;
}

p {
    font-family: "Raleway";
    font-size: 18px;
    color: var(--white-text);
}

.section-title {
    margin-bottom: var(--section-title-mb);
}

.green-text {
    color: var(--green);
}

.stroked-text {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 0.3px;
    -webkit-text-stroke-color: var(--green);
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*SCROLL UP BUTTON*/
.scroll-to-top {
    position: fixed; 
    display: flex;
    align-items: center;
    padding: 10px;
    bottom: 10px;  
    right: 10px;    
    background-color: var(--black);
    border: 1px solid var(--green);  
    border-radius: 5px; 
    cursor: pointer;
    opacity: 0;    
    transition: opacity 0.3s, border 0.3s; 
    z-index: 1000; 
}

.scroll-to-top:hover {
    border: 1px solid white;
}

.scroll-to-top.visible {
    opacity: 1; 
}

.arrow-up {
    color: var(--green);
    rotate: -45deg;
    transition: 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.scroll-to-top:hover .arrow-up {
    rotate: -90deg;
    color: white;
}

/*PRIMARY BUTTON*/
.button {
    --black-700: #0e0e0e;
    --border_radius: 25px;
    --transtion: 0.3s ease-in-out;
    --offset: 2px;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transform-origin: center;
    padding: 1rem 2rem;
    background-color: transparent;
    border: none;
    border-radius: var(--border_radius);
    transform: scale(calc(1 + (var(--active, 0) * 0.1)));
    transition: transform var(--transtion);
}

.button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: var(--black-700);
    border-radius: var(--border_radius);
    box-shadow: inset 0 0.5px hsl(0, 0%, 100%), inset 0 -1px 1.5px 0 hsl(0, 0%, 0%),
        0px 4px 10px -4px hsla(0 0% 0% / calc(1 - var(--active, 0))),
        0 0 0 calc(var(--active, 0) * 0.375rem) var(--green);
    transition: all var(--transtion);
    z-index: 0;
}

.button::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: hsla(255, 18%, 9%, 0.75);
    background-image: radial-gradient(
        at 51% 89%,
        var(--green) 0px,
        transparent 50%
        ),
        radial-gradient(at 100% 100%, rgb(22, 21, 22) 0px, transparent 50%),
        radial-gradient(at 22% 91%, rgb(16, 16, 17) 0px, transparent 50%);
    background-position: top;
    opacity: var(--active, 0);
    border-radius: var(--border_radius);
    transition: opacity var(--transtion);
    z-index: 2;
}

.button:is(:hover, :focus-visible) {
    --active: 1;
}
.button:active {
    transform: scale(1);
}

.button .dots_border {
    --size_border: calc(100% + 2px);
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: var(--size_border);
    height: var(--size_border);
    background-color: transparent;
    border-radius: var(--border_radius);
    z-index: -10;
}

.button .dots_border::before {
    content: "";
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform-origin: left;
    transform: rotate(0deg);
    width: 100%;
    height: 2rem;
    background-color: white;
    mask: linear-gradient(transparent 0%, white 120%);
    animation: rotate-button 2s linear infinite;
}

@keyframes rotate-button {
    to {
        transform: rotate(360deg);
    }
}

.button .sparkle {
    position: relative;
    z-index: 10;
    width: 1.75rem;
}

.button .sparkle .path {
    fill: currentColor;
    stroke: currentColor;
    transform-origin: center;
    color: hsl(0, 0%, 100%);
}

.button:is(:hover, :focus) .sparkle .path {
    animation: path 1.5s linear 0.5s infinite;
}

.button .sparkle .path:nth-child(1) {
    --scale_path_1: 1.2;
}
.button .sparkle .path:nth-child(2) {
    --scale_path_2: 1.2;
}
.button .sparkle .path:nth-child(3) {
    --scale_path_3: 1.2;
}

@keyframes path {
    0%,
    34%,
    71%,
    100% {
        transform: scale(1);
    }
    17% {
        transform: scale(var(--scale_path_1, 1));
    }
    49% {
        transform: scale(var(--scale_path_2, 1));
    }
    83% {
        transform: scale(var(--scale_path_3, 1));
    }
}

.button .text_button {
    position: relative;
    z-index: 10;
    background-image: linear-gradient(
                      90deg,
                    hsla(0 0% 100% / 1) 0%,
                      hsla(0 0% 100% / var(--active, 0)) 150%);
    background-clip: text;
    font-size: 1rem;
    color: transparent;
}

/*SECONDARY BUTTON*/
.button-secondary {
    background-color: #141218;
    color: var(--white-text);
    font-size: 18px;
    border: none;
    padding: 10px 18px;
    cursor: pointer;
    border-radius: 8px;
    position: relative;
    font-family: "Raleway";
    transition: 0.2s all;
    font-weight: 500;
}

.button-secondary:hover {
    background-color: #2f2b36;
}

/*SPECIAL EFFECTS*/
#blob {
    position: absolute;
    height: 125px;
    aspect-ratio: 1;
    background-color: white;
    left: 50%;
    top: 50%;
    translate: -50% -50%;
    border-radius: 50%;
    background: linear-gradient(
    to right,
    rgb(127, 255, 155), 
    rgb(162, 216, 112)
    );
    filter: blur(100px);
    animation: rotate 20s infinite;
    opacity: .6;
    z-index: 0;
}

@keyframes rotate {
    from {
        rotate: 0deg;
    }

    50% {
        scale: 1 1.5;
    }

    to {
        rotate: 360deg;
    }
}

.noise {
    background: url("../images/noise.svg");
    background-size: 180px;
    width: 100vw;
    height: 100%;
    opacity: .1;
    position: absolute;
    z-index: -2;
}

.grid {
    background: url("../images/grid.svg");
    width: 100vw;
    height: 100%;
    opacity: .1;
    position: absolute;
    z-index: -1;
}  

.reloj-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    backdrop-filter: blur(10px);
    color: var(--green);
    padding: 10px 15px;
    font-family: "Round";
    font-weight: 400;
    font-size: 25px;
    border-radius: 5px;
    z-index: 1000; 
}

.separador {
    margin: 0 5px;
}

/*LANDING*/
body.evento {
    background-color: rgb(3, 3, 3);
    font-family: "Raleway";
    height: 100%;
    position: relative;
    overflow-x: hidden;
}

/*LANDING - Navbar*/
.container-nav-evento {
    display: flex;
    justify-content: center;
    width: 100%;
    height: auto;
    position: fixed;    
    z-index: 1000;
    mix-blend-mode: difference;
    transition: transform 0.3s ease;
}

.nav-evento {
    display: flex;
    justify-content: space-between;
    width: var(--section-width);
    padding-top: 20px;
    height: 90px;
    align-items: center;
}

.nav-evento a {
    color: white;
    font-family: "Raleway";
    font-weight: 700;
    text-transform: uppercase;
    font-size: 17px;
}

.rolling-text {
    display: inline-block;
    font-size: 48px;
    line-height: 72px;
    height: 72px;
    text-decoration: none;
    overflow: hidden;
}
.rolling-text:hover .letter, .rolling-text.play .letter {
    transform: translateY(-100%);
}
.rolling-text .block:last-child {
    color: var(--green);
}
.rolling-text .letter {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.76, 0, 0.24, 1);
}

.letter:nth-child(1) {
    transition-delay: 0s;
}

.letter:nth-child(2) {
    transition-delay: 0.015s;
}

.letter:nth-child(3) {
    transition-delay: 0.03s;
}

.letter:nth-child(4) {
    transition-delay: 0.045s;
}

.letter:nth-child(5) {
    transition-delay: 0.06s;
}

.letter:nth-child(6) {
    transition-delay: 0.075s;
}

.letter:nth-child(7) {
    transition-delay: 0.09s;
}

.letter:nth-child(8) {
    transition-delay: 0.105s;
}

.letter:nth-child(9) {
    transition-delay: 0.12s;
}

.letter:nth-child(10) {
    transition-delay: 0.135s;
}

.letter:nth-child(11) {
    transition-delay: 0.15s;
}

.letter:nth-child(12) {
    transition-delay: 0.165s;
}

.letter:nth-child(13) {
    transition-delay: 0.18s;
}

.letter:nth-child(14) {
    transition-delay: 0.195s;
}

.letter:nth-child(15) {
    transition-delay: 0.21s;
}

.letter:nth-child(16) {
    transition-delay: 0.225s;
}

.letter:nth-child(17) {
    transition-delay: 0.24s;
}

.letter:nth-child(18) {
    transition-delay: 0.255s;
}

.letter:nth-child(19) {
    transition-delay: 0.27s;
}

.letter:nth-child(20) {
    transition-delay: 0.285s;
}

.letter:nth-child(21) {
    transition-delay: 0.3s;
}

.items-left {
    display: flex;
    width: 300px;
    justify-content: space-between;
}

.items-right {
    display: flex;
    width: 300px;
    justify-content: space-between;
}

.logo-container {
    overflow: visible;
}

.logo {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-family: "Round";
    z-index: 1000;
    padding: 10px;
    margin-top: 10px;
    border-radius: 10px;
    mix-blend-mode: difference;
}

.logo h1 {
    font-weight: 500;
    font-size: 40px;
    text-align: center;
}
  
.container-logo {
    width: 100%;
    height: 100vh;
    background-color: var(--black);
}

.grid-background {
    width: 100%;
    height: 100%;
    background-image: url("../images/grid.svg");
    position: relative;
}

.countdown {
    text-align: center;
}

.time {
    text-align: center;
    display: flex;
    gap: 5px;
}

.unit {
    display: inline-block;
    text-align: center;
    width: 60px;
}

.number {
    font-size: 40px;
    font-weight: 500;
    color: var(--green);
    margin-right: 1px;
}

.label {
    font-size: 40px;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 0.3px;
    -webkit-text-stroke-color: var(--green);
}

/*LANDING - Content container*/
.content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--black);
}

/*LANDING - Evento*/
section.el-evento {
    padding-top: 100px;
    width: var(--section-width);
    margin-bottom: var(--section-mb);
}

.section-title.el-evento {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-bottom: 100px;
    height: 100vh;
}

.section-title.el-evento h1 {
    margin-bottom: 20px;
    font-size: 80px;
}

.section-title.el-evento p {
    width: 50%;
    text-align: left;
}

.section-subtitle {
    margin-bottom: 35px;
    margin-top: -75px;
}

.section-subtitle h2 {
    font-family: "Round";
    color: var(--green);
}

.section-subtitle.sobre-el-evento {
    margin-top: 100px;
    text-align: right;
}

.bento-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.teasers-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
    height: 450px;
}

.content-section {
    display: grid;
    grid-template-columns: 4fr 2fr;
    grid-template-rows: repeat(2, 1fr); 
    grid-gap: 10px;
    min-height: 600px;
}

.content-section.galeria {
    height: auto;
    min-height: unset;
}

.content-section.galeria h3 {
    margin-bottom: 0px;
}

.grid-item {
    background-color: rgb(32, 32, 32);
    border-radius: 8px;
    width: auto;
    position: relative;
    overflow: hidden;
}

.large {
    grid-row: span 2;
    height: auto;
}

.card {
    padding: 25px 0;
}

.card .background.large {
    background: url("../images/point-grid.svg");
    background-position: center;
    opacity: .4;
}

.small {
    height: auto;
}

.teasers {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
    cursor: pointer;
}

.play-button {
    width: 60px;
    height: 60px;
    background-color: var(--green);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.play-button::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 20px solid var(--black);
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    position: absolute;
    inset: 0;
    margin: auto;
    left: 5px;
}

.blurred {
    filter: blur(75px);
    pointer-events: none; 
}

.blurred-low {
    filter: blur(25px);
    pointer-events: none; 
}

.lock-icon {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background-color: var(--black);
    padding: 10px;
    border-radius: 5px;
    box-shadow: -3px 6px 20px 0px #71f92717;
}

.lock-icon span.lock-image {
    filter: grayscale(1);
}

.lock-icon p {
    padding-top: 7px;
    color: var(--white-text);
    font-weight: 400;
}

.teasers[data-blocked] + .lock-icon {
    display: block; 
}

.teasers[data-blocked] + .play-button {
    display: none; 
}

.teasers:not([data-blocked]) + .play-button {
    display: flex; 
}

.outer {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    padding: 1px;
    background: radial-gradient(circle 230px at 0% 0%, #ffffff, #0c0d0d);
    position: relative;
    font-family: var(--font-var);
}

.outer.alt {
    background: radial-gradient(circle 230px at 100% 0%, #ffffff, #0c0d0d);
}

.outer.large {
    background: radial-gradient(circle 360px at 52% 0%, #ffffff, #0c0d0d);
}
  
.dot {
    width: 5px;
    aspect-ratio: 1;
    position: absolute;
    background-color: var(--green);
    box-shadow: 0 0 10px #ffffff;
    border-radius: 100px;
    z-index: 2;
    right: 10%;
    top: 10%;
    animation: moveDot 6s linear infinite;
}

@keyframes moveDot {
    0%,
    100% {
        top: 10%;
        right: 10%; 
    }
    25% {
        top: 10%; 
        right: calc(90% - 5px); 
    }
    50% {
        top: calc(90% - 5px); 
        right: calc(90% - 5px); 
    }
    75% {
        top: calc(90% - 5px); 
        right: 10%; 
    }
}

.card {
    z-index: 1;
    width: 100%;
    height: 100%;
    border-radius: 9px;
    border: solid 1px #202222;
    background-size: 20px 20px;
    background: radial-gradient(circle 280px at 0% 0%, #444444, #0c0d0d);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-direction: column;
    color: #fff;
}

.card.large {
    z-index: 1;
    width: 100%;
    height: 100%;
    border-radius: 9px;
    border: solid 1px #202222;
    background-size: 20px 20px;
    background: radial-gradient(circle 280px at 50% 0%, #444444, #0c0d0d); 
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-direction: column;
    gap: 30px;
    color: #fff;
}

.card.large p {
    opacity: .5; 
    text-align: justify;
    font-size: 1.2rem;
}

.ray {
    width: 220px;
    height: 45px;
    border-radius: 100px;
    position: absolute;
    background-color: #c7c7c7;
    opacity: 0.4;
    box-shadow: 0 0 50px #fff;
    filter: blur(10px);
    transform-origin: 10%;
    top: 0%;
    left: 0;
    transform: rotate(40deg);
}

.ray.alt {
    transform: rotate(120deg);
    right: -160px;
    bottom: 120px;
    left: auto;
    top: auto;
}

.ray.large {
    transform: rotate(90deg);
    top: -15px; 
    left: auto;
    bottom: auto;
    right: 30%;
    opacity: .2;
}

.card .text {
    font-family: var(--font-var);
    font-size: 5rem;
    background: linear-gradient(45deg, #000000 4%, #fff, #000);
    background-clip: text;
    color: transparent;
    width: 100px;
    z-index: 2;
}

.card .text.alt {
    text-align: center;
    font-size: 3rem;
    padding-bottom: 10px;
}

.card .placeholder {
    font-size: 2rem;
    background: linear-gradient(45deg, #000000 4%, #fff, #000);
    background-clip: text;
    color: transparent;
    width: 350px;
    text-align: center;
    z-index: 2;
}

.card .background {
    background: 
        url("../images/location2025.webp") no-repeat center center,
        rgba(0, 0, 0, 0.5);
    background-size: cover;
    background-position-y: -240px; 
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-blend-mode: multiply;
    mask: radial-gradient(black 0%, transparent);
}

.card .background.video {
    background-size: contain;
}

.card .background.location2024 {
    background: 
        url("../images/location.webp") no-repeat center center,
        rgba(0, 0, 0, 0.5);
    background-size: cover;
    background-position-y: -240px; 
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-blend-mode: multiply;
    mask: radial-gradient(black 0%, transparent);
}

.line {
    width: 100%;
    height: 1px;
    position: absolute;
    background-color: #2c2c2c;
}

.topl {
    top: 10%;
    background: linear-gradient(90deg, #888888 30%, #1d1f1f 70%);
}

.bottoml {
    bottom: 10%;
}

.leftl {
    left: 10%;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, #747474 30%, #222424 70%);
}

.rightl {
    right: 10%;
    width: 1px;
    height: 100%;
}

/*LANDING - Jurado*/
section.jurado {
    width: var(--section-width);
    margin-bottom: var(--section-mb);
    position: relative;
}

.section-title.jurado {
    text-align: center;
    margin-bottom: 175px;
}

.jurados {
    display: flex;
    justify-content: space-between;
    position: relative;
    height: 550px;
    align-items: flex-end;
    gap: 500px;
}

.jurados::after {
    position: absolute;
    content: "";
    width: 110%;
    bottom: -40px;
    background-color: var(--black);
    height: 70px;
    z-index: 100;
    filter: blur(5px);
}

.jurado-item {
    position: relative;
    height: 500px;
    width: auto;
    transition: transform 0.3s ease;
}

.jurado-item img {
    width: 100%; 
    transition: filter 0.5s ease;
    filter: grayscale(1);
}

.jurado-item.bigger {
    position: absolute;
    height: 600px;
    bottom: 0;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.jurado-item.big {
    position: absolute;
    height: 500px;
    bottom: 0;
    z-index: 2;
}

.jurado-item.big.right {
    right: 200px;
}

.jurado-item.big.left {
    left: 200px;
}

.jurado-item .info {
    display: none; /* Oculta el texto por defecto */
    position: absolute;
    top: 50%; /* Ajusta esto según sea necesario */
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--green); /* Cambia esto según tu diseño */
    font-family: "Round";
    font-size: 60px;
}

.jurado-item:hover .info {
    display: block; /* Muestra el texto al hacer hover */
}

.info .name.stroked-text {
    -webkit-text-stroke-color: white;
}

/*LANDING - Invitados*/
section.invitados {
    width: var(--section-width);
    margin-bottom: var(--section-mb);
}

.section-title.invitados {
    text-align: center;
}

.photo-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px 40px;
    margin-bottom: 30px;
}

.photo-container {
    position: relative;
    width: 250px;
    height: 350px;
    border-radius: 8px;
}

.photo-container img {
    border-radius: inherit;
    position: absolute;
}

.photo-container::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    border-radius: inherit;
    box-sizing: border-box;
    border-right: 2px solid var(--green);
    left: 3px;
    box-shadow: -20px 20px 60px #5dd42100,
                20px -20px 60px #81ff2d0c;
}

.current-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0; 
    pointer-events: none;
}

.name-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 10px;
	color: white;
	font-size: 1.2em;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0) 100%);
	opacity: 0; 
	transition: opacity 0.5s ease; 
	text-align: center;
	font-family: "Round";
	font-size: 40px;
	font-weight: 500;
	color: var(--green);
	letter-spacing: 1px;
}

.reveal-button {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease;
}

/*LANDING - Galería*/
section.galeria {
    width: var(--section-width);
    margin-bottom: var(--section-mb);
    background-color: var(--black);
}

.notifications-container {
    width: 100%;
    height: auto;
    font-size: 0.875rem;
    line-height: 1.25rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.flex {
    display: flex;
    align-items: center;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.gallery-icon {
	height: 30px;
	width: auto;
}

.alert {
    background-color: #d8ffd4;
    border-left-width: 4px;
    border-color: rgb(250 204 21);
    border-radius: 0.375rem;
    padding: 1rem;
    width: 385px;
    margin-bottom: 10px;
}

.alert-svg {
    height: 1.25rem;
    width: 1.25rem;
    color: red;
}

.alert-text {
    color: var(--black);
}

.alert-prompt-wrap {
    margin-left: 0.75rem;
    color: rgb(202 138 4);
}

.filters {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.active-filter {
    background-color: var(--green);
    color: var(--black);
}

.active-filter:hover {
    background-color: var(--green-opacity);
}

.masonry {
    background-color: var(--black);
    column-count: 4;
    column-gap: 1rem;
    content-visibility: auto;
}

.masonry-item {
    background-color: var(--black);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.masonry-item img {
    width: 100%;
    display: block;
    border-radius: 10px;
}

/*LANDING - VOTACIÓN EN VIVO*/
section.votacion {
    margin-bottom: var(--section-mb);
    margin-top: 50px;
    width: var(--section-width);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.live-indicator {
    display: flex;
    align-items: center;
    width: fit-content;
    background-color: rgb(255, 47, 47);
    padding: 5px 10px;
    border-radius: 5px;
    margin-bottom: 40px;
}

.live-dot {
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
    margin-right: 8px;
    animation: blink 1.5s infinite; 
}

.live-dot.evento {
    width: 10px;
    height: 10px;
    background-color: red;
    border-radius: 50%;
    animation: blink 1.5s infinite; 
    position: relative;
    display: inline-block;
    margin: 0;
}

.live-text {
    color: white;
    font-size: 14px;
    font-family: "Raleway";
    font-weight: 600;
    text-transform: uppercase;
}

@keyframes blink {
    0%, 100% {
        opacity: 1; 
    }
    50% {
        opacity: 0;
    }
}

.section-title.votacion {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/*LANDING - SPONSORS*/
.sponsors {
    margin-bottom: 75px;
}

.sponsors .section-title h1 {
    text-align: center;
}

.sponsors-logos.ppales {
    display: flex;
    gap: 50px;
    margin-bottom: 75px;
}

.sponsors-logos.secundarios {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.sponsors-logos.ppales img {
    width: auto;
    height: 75px;
    padding-right: 50px;
    border-right: 1px solid rgba(255, 255, 255, 0.158);
}

.sponsors-logos.ppales img:last-child {
    border-right: none;
    padding: 0;
}

.sponsors-logos.secundarios img {
    width: auto;
    height: 50px;
    padding-right: 50px;
    border-right: 1px solid rgba(255, 255, 255, 0.158);
}

.sponsors-logos.secundarios img:last-child {
    border-right: none;
    padding: 0;
}

/* Sponsors 2025 en blanco */
.sponsors-2025 img {
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.sponsors-2025 img:hover {
    filter: brightness(0) invert(1) opacity(0.8);
}

.sponsors-logos.ppales img.reduced {
    height: 50px;
}

/*LANDING - BDD FIREBASE*/
#vote-button {
    position: fixed;
    bottom: -100px; /* Fuera del viewport inicialmente */
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    font-size: 20px;
    background-color: var(--green);
    color: var(--black);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease-in-out; /* Animación de deslizamiento */
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 8px;
}

#vote-button:hover {
    padding: 10px 30px;
}
  
#vote-button.show {
    bottom: 15px; /* Cambia la posición para que aparezca en pantalla */
}
  
.disfraz-container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.disfraz {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    justify-content: center;
    overflow: hidden;
}

.disfraz.podium-2 {
    top: -25px;
}

.podium-title {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.podium-title h1 {
    font-size: 60px;
    margin-bottom: 20px;
}

.podium-anim {
    width: 150px;
    height: 150px;
    mask: radial-gradient(black 80%, transparent);
}

.top-votes-container {
    display: flex;
    margin-bottom: 100px;
    gap: 20px;
    margin-top: 25px;
}

.disfraz::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 55%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
    border-radius: 0 0 5px 5px;
    pointer-events: none;
}

.disfraz img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}
 
.disfraz-img.podium-image img {
    height: 500px;
}

a.disfraz-img {
    width: 100%;
    height: 100%;
}

.vote-content {
    position: absolute;
    bottom: 50px;
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: space-around;
    pointer-events: none;
    text-align: center;
}

.vote-buttons {
    display: flex;
    position: absolute;
    bottom: 0;
    width: 100%;
    color: var(--black);
}

.disfraz .vote-buttons.podium button.button-secondary {
    background-color: transparent;
}

.disfraz .vote-buttons.podium button.button-secondary:first-child {
    border-right: 1px solid rgba(0, 0, 0, 0.149);
}

.disfraz .vote-buttons.podium button.button-secondary:nth-child(2) {
    border-right: 1px solid rgba(0, 0, 0, 0.149);
}

.vote-buttons.podium::before {
    position: absolute;
    height: 100%;
    width: 100%;
    content: "";
    top: 0;
    left: 0;
    pointer-events: none;
    background: radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 8%, #9f7928 30%, #8A6E2F 40%, transparent 80%),
                radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, #5d4a1f 62.5%, #5d4a1f 100%);
    z-index: 9;
    border-radius: 0 0 4px 4px;
}

.vote-buttons button:first-child {
    background-color: #dbfdc8 ;
    border-radius: 0 0 0 4px;
    color: var(--black);
}
.vote-buttons button:nth-child(2) {
    background-color: #b2ff88;
    border-radius: 0;
    color: var(--black);
}
.vote-buttons button:last-child {
    background-color: var(--green);
    border-radius: 0 0 4px 0;
    color: var(--black);
}

.disfraz button.button-secondary {
    color: var(--black);
    bottom: 0;
    z-index: 10;
    width: 100%;
    font-size: 15px;
    font-weight: 500;
    padding: 5px 10px;
}

.vote-text {
    position: relative;
    overflow: hidden; /* Oculta el número durante la animación */
    font-weight: 800;
    font-size: 20px;
}

.vote-number {
    position: absolute;
    width: 100%;
    text-align: center;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.vote-number.old {
    transform: translateY(-100%); /* Sube el número anterior fuera de la vista */
    opacity: 0; /* Desvanecer el número anterior */
}

.vote-number.new {
    transform: translateY(100%); /* Baja el nuevo número desde abajo */
    opacity: 0; /* Comienza invisible */
}

.vote-number.new.animate {
    animation: rise 0.5s forwards; /* Animación para mostrar el nuevo número */
}

@keyframes rise {
    0% {
        transform: translateY(100%); /* Comienza abajo */
        opacity: 0;
    }
    50% {
        opacity: 1; /* Muestra el nuevo número en el medio */
    }
    100% {
        transform: translateY(0); /* Finaliza en su posición original */
        opacity: 1;
    }
}

/*LANDING - ALERT BOX*/
#custom-alert {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#alert-box {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#alert-message {
    margin-bottom: 25px;
    font-size: 22px;
    color: var(--black);
    padding: 0 50px;
}

#alert-ok-btn {
    background-color: #141218;
    color: var(--white-text);
    font-size: 18px;
    border: none;
    padding: 10px 18px;
    cursor: pointer;
    border-radius: 8px;
    position: relative;
    font-family: "Raleway";
    transition: 0.2s all;
    font-weight: 500;
}

#alert-ok-btn:hover {
    background-color: #2f2b36;
}

#voto-animation {
    width: 150px;
    height: 150px;
    margin-bottom: 30px;
}

#voteless-animation {
    width: 150px;
    height: 150px;
    margin-bottom: 30px;
}

#thank-you-animation {
    width: 150px;
    height: 150px;
    margin-bottom: 30px;
}

.hidden {
    display: none!important;
}

.transition {
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    pointer-events: none;
    background: #ffffff;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
}

/*LANDING - VOTES AVAILABLE*/
.votes-available {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #DBFDC8;
    color: var(--black);
    padding: 15px;
    z-index: 1000;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    text-align: left;
    display: flex;
    flex-direction: column;
    clip-path: polygon(
    0% 1%, 5% 0%, 10% 1%, 
    15% 0%, 20% 1%, 25% 0%, 
    30% 1%, 35% 0%, 40% 1%, 
    45% 0%, 50% 1%, 55% 0%, 
    60% 1%, 65% 0%, 70% 1%, 
    75% 0%, 80% 1%, 85% 0%, 
    90% 1%, 95% 0%, 100% 1%, 
    100% 99%, 95% 100%, 90% 99%, 
    85% 100%, 80% 99%, 75% 100%, 
    70% 99%, 65% 100%, 60% 99%, 
    55% 100%, 50% 99%, 45% 100%, 
    40% 99%, 35% 100%, 30% 99%, 
    25% 100%, 20% 99%, 15% 100%, 
    10% 99%, 5% 100%, 0% 99%
    );
}

.votes-available-title {
    font-size: 25px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1.2px;
    text-align: center;
    margin-bottom: 15px;
    z-index: 10;
    display: block;
}

.votes-available p {
    display: flex;
    flex-direction: column;
    color: var(--black);
    padding-bottom: 12px;
    margin-bottom: 25px;
    z-index: 10;
}

.votes-available p.votes-available-text:last-child {
    border: none;
    margin-bottom: 0;
}

.votes-available p.votes-available-text {
    border-bottom: 1px solid rgba(0, 0, 0, 0.137);
    text-align: center;
    justify-content: flex-start;
}

.votes-available p span {
    font-family: "Raleway";
    font-size: 22px;
    text-align: center;
    margin-top: 7px;
    color: var(--black);
    font-weight: 700;
}

/*LANDING - PHOTOSWIPE UI*/
.pswp__counter {
    visibility: hidden;
}

.vote-buttons.pswp-view {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    position: relative;
    gap: 25px;
    margin-bottom: 20px;;
}

.vote-text.pswp-view {
    font-size: 30px;
}

.pswp-custom-caption {
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
    color: #fff; 
    padding: 10px; 
    display: flex;
    flex-direction: column; 
    align-items: center;
}

.vote-buttons.pswp-view button {
    border-radius: 5px;
}

.vote-buttons.pswp-view.podium-view button {
    background: radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 8%, #9f7928 30%, #8A6E2F 40%, transparent 80%), radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, #5d4a1f 62.5%, #5d4a1f 100%);
}

/*LANDING TUTORIAL*/
/* Estilos para el tutorial */
.tutorial-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.884);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    visibility: hidden;
}

.tutorial-content {
    background: var(--black);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.596);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tutorial-content h2 {
    margin-bottom: 15px;
    font-size: 55px;
    letter-spacing: 0;
}

.tutorial-content p {
    margin: 10px 0;
    color: whitesmoke;
    padding-bottom: 20px;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tutorial-content.finished h2 {
    font-size: 70px;
}

.tutorial-content.finished p {
    width: 55%; 
}

.tutorial-content.finished p::before {
    display: none;
}

.tutorial-content p span {
    font-family: "Round";
    font-size: 30px;
    color: var(--green);
    margin-right: 15px;
}

.mobile-vote-counter {
    position: absolute;
    top: 1px;
    font-family: "Raleway";
    font-weight: 700;
    color: var(--green);
    padding: 5px;
    border-radius: 8px;
    font-size: 15px;
}

.tutorial-content p::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.048);
    mask: linear-gradient(to left, black 80%, transparent),
                linear-gradient(to right, black 80%, transparent);
    -webkit-mask: linear-gradient(to left, black 80%, transparent),
                        linear-gradient(to right, black 80%, transparent);
    mask-composite: intersect;
    -webkit-mask-composite: source-in;
}

.tutorial-content p.last-child {
    padding-bottom: 0;
}
.tutorial-content p.last-child::before {
    display: none;
}

#close-tutorial {
    margin-top: 25px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: var(--green);
    color: var(--black);
    cursor: pointer;
    font-size: 15px;
}




