:root {
    --neon: #c6ff15;
    /* verde neón */
    --pink: #ff4fd8;
    /* rosa del badge */
    --yellow: #ffe600;
    /* acentos */
    --bg: #0c0c0c;
    /* fondo negro texturizado */
    --muted: #9c9c9c;
    --card: #121212;
    --maxw: 1040px;
    --radius: 22px;
    --shadow: 0 10px 32px rgba(0, 0, 0, .45);
}

section,
.section-title,
.ugc,
.carousel-wrap,
.legal {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-inline: auto;
}


/* Reset suave */
*,
*::before,
*::after {
    box-sizing: border-box
}

html,
body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: #fff;
    font-family: "Montserrat", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, Helvetica, sans-serif;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none
}

.wrap {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0;
    overflow-x: hidden;
}

/* ===== HERO BANNER ===== */
.hero {
    position: relative;
    width: 100%;
    margin: 8px auto;
    overflow: hidden;
    border-radius: 0;
    /* que el banner sea full-width */
    box-shadow: none;
    padding: initial;
    background: #0d0c0ce0;
    /* relleno de fondo */
}

.hero-banner {
    position: relative;
    width: 100%;
    height: 30xp;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}

/* Botón flotante sobre el banner */
.hero-btn {
    position: absolute;
    bottom: 8%;
    right: 10%;
    background: #c6ff15;
    color: #000;
    font-weight: 900;
    border-radius: 50px;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 1.2rem;
    box-shadow: 0 0 25px rgba(198, 255, 21, 0.5);
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background: #d9ff42;
    transform: scale(1.05);
}

.badge {
    display: inline-block;
    margin-top: 10px;
    background: var(--pink);
    color: #000;
    font-weight: 900;
    padding: 10px 16px;
    border-radius: 999px;
    box-shadow: 0 6px 0 #b02896, var(--shadow)
}

.prizes {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 14px
}

.prizes b {
    font-size: clamp(42px, 6vw, 70px);
    line-height: 1;
    color: #fff
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 14px
}

.cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background-color: #25D366;
    color: white;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.3s;
}

.cta:hover {
    background-color: #1ebe57;
}

.cta .dot {
    display: none;
}

.hero-right {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-product {
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(120deg, #1d1d1d, #0d0d0d);
    padding: 14px;
    border: 1px solid #262626;
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-product img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* ===== SECCIÓN "DALE PLAY" ALINEADA ===== */
.section-title {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 20px 0;
}

/* Imagen con mismo ancho que banner y spotify */
.section-title-img {
    width: 100%;
    max-width: 1060px;
    /* igual que el ancho visual del contenedor principal */
    height: auto;
    object-fit: contain;
    display: block;
    margin: 14px auto;
    filter: drop-shadow(0 0 18px rgba(198, 255, 21, 0.35));
}

/* Evita salto visual entre secciones */
.section-title+.stage {
    margin-top: -10px;
}

/* ===== STAGE / SPOTIFY ===== */
.stage {
    background: radial-gradient(circle at center, #0c0c0c 0%, #000 90%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px;
    position: relative;
    overflow: hidden;
}

/* Contenedor */
.spotify-container {
    position: relative;
    width: 97vw;
    max-width: 1600px;
    height: 440px;
    /* 👈 equilibrio visual */
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(197, 240, 68, 0.645);
    box-shadow:
        0 0 55px rgba(198, 255, 21, 0.5),
        inset 0 0 25px rgba(198, 255, 21, 0.25);
    background: transparent;
    animation: pulseGlow 3s ease-in-out infinite;
}

/* Iframe ajustado */
.spotify-container iframe {
    position: absolute;
    top: -1%;
    left: -1%;
    width: 102%;
    height: 102%;
    /* 👈 el “punto medio mágico” */
    border: none;
    border-radius: 0;
    background: transparent;
    z-index: 2;
}

/* Glow */
.spotify-container::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: 0 0 60px rgba(198, 255, 21, 0.35);
    z-index: 1;
    pointer-events: none;
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow:
            0 0 40px rgba(198, 255, 21, 0.35),
            inset 0 0 15px rgba(198, 255, 21, 0.2);
    }

    50% {
        box-shadow:
            0 0 70px rgba(196, 255, 21, 0.845),
            inset 0 0 25px rgba(196, 255, 21, 0.811);
    }
}

/* ===== SECCIÓN "SUBÍ UN VIDEO" ===== */
.ugc {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* mismo fondo base */
    margin: 40px auto 20px;
    padding: 20px 0;
}

/* Imagen */
.ugc-img {
    display: block;
    width: 100%;
    max-width: 1060px;
    /* igual que el banner y Spotify */
    height: auto;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 0 18px rgba(198, 255, 21, 0.35));
}

/* Margen entre secciones */
.ugc+.videos {
    margin-top: 10px;
}

/* CAROUSEL */
.carousel-wrap {
    position: relative;
    margin: 16px 0 8px
}

.carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 325px;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 2px 4px;
    scrollbar-width: none;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.card {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 575px;
    border-radius: 20px;
    background: #000;
}

.card iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
    object-fit: cover;
}

.nav {
    position: absolute;
    inset-block: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px
}

.nav.left {
    left: -6px
}

.nav.right {
    right: -6px
}

.nav button {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid #2a2a2a;
    background: #111;
    color: #fff;
    cursor: pointer
}

/* ===== SECCIÓN BASES Y CONDICIONES ===== */
.legal {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 60px auto 20px;
  padding: 40px 0 20px;
  text-align: center;
}

/* Botón principal */
.bases {
  display: inline-block;
  background: radial-gradient(circle at 30% 30%, #caff00, #9fd100 80%);
  color: #000;
  font-weight: 900;
  font-size: 1.6rem;
  border-radius: 80px;
  padding: 20px 70px;
  text-decoration: none;
  box-shadow: 0 6px 0 #7e8b00, 0 0 25px #bfff00;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  line-height: 1.2;
  filter: drop-shadow(0 0 14px rgba(198, 255, 21, 0.4));
}

.bases:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(190, 255, 0, 0.6), 0 0 30px #caff00;
}

/* Texto debajo */
.condiciones {
  margin-top: 14px;
  opacity: 0.9;
  font-weight: 600;
  color: #fff;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

/* FOOTER */
footer {
    opacity: .6;
    text-align: center;
    padding: 30px 0 80px;
    font-size: 12px
}

/* Stars */
.twinkles {
    position: absolute;
    inset: 0;
    pointer-events: none
}

.twinkle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #fff 0%, #fff 40%, rgba(255, 255, 255, 0) 70%);
    filter: drop-shadow(0 0 6px var(--neon));
    opacity: .8
}

.t1 {
    top: 18%;
    left: 6%
}

.t2 {
    top: 8%;
    right: 14%
}

.t3 {
    bottom: 8%;
    left: 20%
}



/* ===== POPUP PDF ===== */
.pdf-modal {
    display: none;
    position: fixed;
    z-index: 999;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(6px);
}

.pdf-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    height: 85vh;
    background: #0c0c0c;
    border-radius: 16px;
    box-shadow: 0 0 30px rgba(198, 255, 21, 0.4);
    overflow: hidden;
    animation: fadeIn 0.4s ease;
}

.pdf-content iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 16px;
}

/* Botón cerrar */
.close-btn {
    position: absolute;
    top: 10px;
    /* ahora dentro del marco visible */
    right: 10px;
    /* más margen desde el borde */
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #c6ff15, #9fd100 80%);
    color: #000;
    font-weight: 900;
    font-size: 22px;
    line-height: 44px;
    text-align: center;
    border: none;
    cursor: pointer;
    box-shadow:
        0 0 8px rgba(198, 255, 21, 0.6),
        0 0 20px rgba(198, 255, 21, 0.3),
        inset 0 0 8px rgba(0, 0, 0, 0.4);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    z-index: 10;
}

.close-btn:hover {
    transform: scale(1.1);
    background: radial-gradient(circle at 30% 30%, #e0ff4d, #baff00 80%);
    box-shadow:
        0 0 16px rgba(198, 255, 21, 0.9),
        0 0 40px rgba(198, 255, 21, 0.6);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}


/* Responsive */
@media (max-width:640px) {
    .prizes b {
        font-size: 46px
    }

    .cta {
        width: 100%;
        justify-content: center
    }

    .carousel {
        grid-auto-columns: 100%;
    }

    .card {
        min-height: auto;
        aspect-ratio: 9 / 16;
        overflow: hidden;
    }

    .card iframe {
        width: 100%;
        height: 100%;
        border-radius: 12px;
        object-fit: cover;
        display: block;
    }

    .spotify-container {
        padding: 12px;
        border-radius: 20px;
    }

    .spotify-container iframe {
        height: 3px;
        top: -1%;
        left: -1%;
        width: 102%;
        height: 102%;
    }
    .hero-btn {
        bottom: 6%;
        right: 50%;
        transform: translateX(50%);
        padding: 14px 28px;
        font-size: 1rem;
    }
	.section-title {
        padding: 12px 0;
    }

    .section-title-img {
        max-width: 92%;
    }
	 .spotify-container {
		height: 381px;
        width: 95vw;
        border-radius: 18px;
    }
	.ugc {
        padding: 12px 0;
        margin: 24px auto 12px;
    }

    .ugc-img {
        max-width: 92%;
    }
	.legal {
     margin: 5px auto 10px;
     padding: 0px 0;
    }:root {
    --neon: #c6ff15;
    /* verde neón */
    --pink: #ff4fd8;
    /* rosa del badge */
    --yellow: #ffe600;
    /* acentos */
    --bg: #0c0c0c;
    /* fondo negro texturizado */
    --muted: #9c9c9c;
    --card: #121212;
    --maxw: 1040px;
    --radius: 22px;
    --shadow: 0 10px 32px rgba(0, 0, 0, .45);
}

section,
.section-title,
.ugc,
.carousel-wrap,
.legal {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-inline: auto;
}


/* Reset suave */
*,
*::before,
*::after {
    box-sizing: border-box
}

html,
body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: #fff;
    font-family: "Montserrat", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, Helvetica, sans-serif;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none
}

.wrap {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0;
    overflow-x: hidden;
}

/* ===== HERO BANNER ===== */
.hero {
    position: relative;
    width: 100%;
    margin: 8px auto;
    overflow: hidden;
    border-radius: 0;
    /* que el banner sea full-width */
    box-shadow: none;
    padding: initial;
    background: #0d0c0ce0;
    /* relleno de fondo */
}

.hero-banner {
    position: relative;
    width: 100%;
    height: 30xp;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}

/* Botón flotante sobre el banner */
.hero-btn {
    position: absolute;
    bottom: 8%;
    right: 10%;
    background: #c6ff15;
    color: #000;
    font-weight: 900;
    border-radius: 50px;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 1.2rem;
    box-shadow: 0 0 25px rgba(198, 255, 21, 0.5);
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background: #d9ff42;
    transform: scale(1.05);
}

.badge {
    display: inline-block;
    margin-top: 10px;
    background: var(--pink);
    color: #000;
    font-weight: 900;
    padding: 10px 16px;
    border-radius: 999px;
    box-shadow: 0 6px 0 #b02896, var(--shadow)
}

.prizes {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 14px
}

.prizes b {
    font-size: clamp(42px, 6vw, 70px);
    line-height: 1;
    color: #fff
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 14px
}

.cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background-color: #25D366;
    color: white;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.3s;
}

.cta:hover {
    background-color: #1ebe57;
}

.cta .dot {
    display: none;
}

.hero-right {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-product {
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(120deg, #1d1d1d, #0d0d0d);
    padding: 14px;
    border: 1px solid #262626;
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-product img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* ===== SECCIÓN "DALE PLAY" ALINEADA ===== */
.section-title {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 20px 0;
}

/* Imagen con mismo ancho que banner y spotify */
.section-title-img {
    width: 100%;
    max-width: 1060px;
    /* igual que el ancho visual del contenedor principal */
    height: auto;
    object-fit: contain;
    display: block;
    margin: 14px auto;
    filter: drop-shadow(0 0 18px rgba(198, 255, 21, 0.35));
}

/* Evita salto visual entre secciones */
.section-title+.stage {
    margin-top: -10px;
}

/* ===== STAGE / SPOTIFY ===== */
.stage {
    background: radial-gradient(circle at center, #0c0c0c 0%, #000 90%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px;
    position: relative;
    overflow: hidden;
}

/* Contenedor */
.spotify-container {
    position: relative;
    width: 97vw;
    max-width: 1600px;
    height: 440px;
    /* 👈 equilibrio visual */
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(197, 240, 68, 0.645);
    box-shadow:
        0 0 55px rgba(198, 255, 21, 0.5),
        inset 0 0 25px rgba(198, 255, 21, 0.25);
    background: transparent;
    animation: pulseGlow 3s ease-in-out infinite;
}

/* Iframe ajustado */
.spotify-container iframe {
    position: absolute;
    top: -1%;
    left: -1%;
    width: 102%;
    height: 102%;
    /* 👈 el “punto medio mágico” */
    border: none;
    border-radius: 0;
    background: transparent;
    z-index: 2;
}

/* Glow */
.spotify-container::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: 0 0 60px rgba(198, 255, 21, 0.35);
    z-index: 1;
    pointer-events: none;
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow:
            0 0 40px rgba(198, 255, 21, 0.35),
            inset 0 0 15px rgba(198, 255, 21, 0.2);
    }

    50% {
        box-shadow:
            0 0 70px rgba(196, 255, 21, 0.845),
            inset 0 0 25px rgba(196, 255, 21, 0.811);
    }
}

/* ===== SECCIÓN "SUBÍ UN VIDEO" ===== */
.ugc {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* mismo fondo base */
    margin: 40px auto 20px;
    padding: 20px 0;
}

/* Imagen */
.ugc-img {
    display: block;
    width: 100%;
    max-width: 1060px;
    /* igual que el banner y Spotify */
    height: auto;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 0 18px rgba(198, 255, 21, 0.35));
}

/* Margen entre secciones */
.ugc+.videos {
    margin-top: 10px;
}

/* CAROUSEL */
.carousel-wrap {
    position: relative;
    margin: 16px 0 8px
}

.carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 325px;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 2px 4px;
    scrollbar-width: none;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.card {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 575px;
    border-radius: 20px;
    background: #000;
}

.card iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
    object-fit: cover;
}

.nav {
    position: absolute;
    inset-block: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px
}

.nav.left {
    left: -6px
}

.nav.right {
    right: -6px
}

.nav button {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid #2a2a2a;
    background: #111;
    color: #fff;
    cursor: pointer
}

/* ===== SECCIÓN BASES Y CONDICIONES ===== */
.legal {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 60px auto 20px;
  padding: 40px 0 20px;
  text-align: center;
}

/* Botón principal */
.bases {
  display: inline-block;
  background: radial-gradient(circle at 30% 30%, #caff00, #9fd100 80%);
  color: #000;
  font-weight: 900;
  font-size: 1.6rem;
  border-radius: 80px;
  padding: 20px 70px;
  text-decoration: none;
  box-shadow: 0 6px 0 #7e8b00, 0 0 25px #bfff00;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  line-height: 1.2;
  filter: drop-shadow(0 0 14px rgba(198, 255, 21, 0.4));
}

.bases:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(190, 255, 0, 0.6), 0 0 30px #caff00;
}

/* Texto debajo */
.condiciones {
  margin-top: 14px;
  opacity: 0.9;
  font-weight: 600;
  color: #fff;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

/* FOOTER */
footer {
    opacity: .6;
    text-align: center;
    padding: 30px 0 80px;
    font-size: 12px
}

/* Stars */
.twinkles {
    position: absolute;
    inset: 0;
    pointer-events: none
}

.twinkle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #fff 0%, #fff 40%, rgba(255, 255, 255, 0) 70%);
    filter: drop-shadow(0 0 6px var(--neon));
    opacity: .8
}

.t1 {
    top: 18%;
    left: 6%
}

.t2 {
    top: 8%;
    right: 14%
}

.t3 {
    bottom: 8%;
    left: 20%
}



/* ===== POPUP PDF ===== */
.pdf-modal {
    display: none;
    position: fixed;
    z-index: 999;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(6px);
}

.pdf-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    height: 85vh;
    background: #0c0c0c;
    border-radius: 16px;
    box-shadow: 0 0 30px rgba(198, 255, 21, 0.4);
    overflow: hidden;
    animation: fadeIn 0.4s ease;
}

.pdf-content iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 16px;
}

/* Botón cerrar */
.close-btn {
    position: absolute;
    top: 10px;
    /* ahora dentro del marco visible */
    right: 10px;
    /* más margen desde el borde */
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #c6ff15, #9fd100 80%);
    color: #000;
    font-weight: 900;
    font-size: 22px;
    line-height: 44px;
    text-align: center;
    border: none;
    cursor: pointer;
    box-shadow:
        0 0 8px rgba(198, 255, 21, 0.6),
        0 0 20px rgba(198, 255, 21, 0.3),
        inset 0 0 8px rgba(0, 0, 0, 0.4);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    z-index: 10;
}

.close-btn:hover {
    transform: scale(1.1);
    background: radial-gradient(circle at 30% 30%, #e0ff4d, #baff00 80%);
    box-shadow:
        0 0 16px rgba(198, 255, 21, 0.9),
        0 0 40px rgba(198, 255, 21, 0.6);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}


/* Responsive */
@media (max-width:640px) {
    .prizes b {
        font-size: 46px
    }

    .cta {
        width: 100%;
        justify-content: center
    }

    .carousel {
        grid-auto-columns: 100%;
    }

    .card {
        min-height: auto;
        aspect-ratio: 9 / 16;
        overflow: hidden;
    }

    .card iframe {
        width: 100%;
        height: 100%;
        border-radius: 12px;
        object-fit: cover;
        display: block;
    }

    .spotify-container {
        padding: 12px;
        border-radius: 20px;
    }

    .spotify-container iframe {
        height: 3px;
        top: -1%;
        left: -1%;
        width: 102%;
        height: 102%;
    }
    .hero-btn {
        bottom: 6%;
        right: 50%;
        transform: translateX(50%);
        padding: 14px 28px;
        font-size: 1rem;
    }
	.section-title {
        padding: 12px 0;
    }

    .section-title-img {
        max-width: 92%;
    }
	 .spotify-container {
		height: 381px;
        width: 95vw;
        border-radius: 18px;
    }
	.ugc {
        padding: 12px 0;
        margin: 24px auto 12px;
    }

    .ugc-img {
        max-width: 92%;
    }
	.legal {
     margin: 5px auto 10px;
     padding: 0px 0;
    }

  .bases {
     font-size: 1.2rem;
     padding: 16px 40px;
     border-radius: 60px;
   }

  .condiciones {
     font-size: 0.95rem;
   }
}


footer {
    opacity: 0.8;
    text-align: center;
    padding: 40px 0;
    font-size: 14px;
    letter-spacing: 0.5px;
    width: 100%;
    background: transparent;
    margin-top: 60px;
}

body {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

section {
    padding-block: 40px;
}

  .bases {
     font-size: 1.2rem;
     padding: 16px 40px;
     border-radius: 60px;
   }

  .condiciones {
     font-size: 0.95rem;
   }
}


footer {
    opacity: 0.8;
    text-align: center;
    padding: 40px 0;
    font-size: 14px;
    letter-spacing: 0.5px;
    width: 100%;
    background: transparent;
    margin-top: 60px;
}

body {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

section {
    padding-block: 40px;
}