html {
    font-size: 62.5%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: black;
    color: white;
    overflow-x: hidden;
}

/* HERO */

.hero {
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    background: radial-gradient(circle at center, #222 0%, #111 40%, #000 80%);
}

/* LOGO */

.logo {
    height: 8rem;
    margin-bottom: 2rem;
}

/* TITULOS */

h1 {
    font-size: 8rem;
    font-weight: bold;
}

h2 {
    font-size: 4rem;
    margin-bottom: 3rem;
}

.descripcion {
    font-size: 2rem;
    margin-bottom: 4rem;
}

.deportes {
    color: #f7c600;
}

.arte {
    color: #e6007e;
}

.cultura {
    color: #00b5e2;
}

/* BOTONES */



.botones {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    width: 100%;
    margin-top: 3rem;
}

/* BOTONES BASE */

.btn {
    padding: 1.6rem 3rem;
    border-radius: 1rem;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: bold;
    transition: 0.3s ease;
    text-align: center;
}

.rosa {
    background: linear-gradient(135deg, #ff0080, #a000ff);
    color: white;
}

.azul {
    background: linear-gradient(135deg, #00b5e2, #0066ff);
    color: white;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 3rem rgba(255, 255, 255, 0.3);
}

/* FLASHES */

.flash {
    position: absolute;
    width: 60rem;
    height: 60rem;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8), transparent 70%);
    filter: blur(8rem);
    opacity: 0.3;
    pointer-events: none;
}

.flash1 {
    top: -20rem;
    left: -20rem;
    animation: move1 8s infinite alternate ease-in-out;
}

.flash2 {
    bottom: -20rem;
    right: -20rem;
    animation: move2 10s infinite alternate ease-in-out;
}

@keyframes move1 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(20rem, 20rem);
    }
}

@keyframes move2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-20rem, -20rem);
    }
}

/* PARTICULAS */

.particles::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#ff0080 1px, transparent 1px),
        radial-gradient(#00b5e2 1px, transparent 1px),
        radial-gradient(#f7c600 1px, transparent 1px);
    background-size: 100px 100px;
    opacity: 0.1;
    animation: float 20s linear infinite;
}

@keyframes float {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 500px 500px;
    }
}

.flash,
.particles {
    pointer-events: none;
}

/* RESPONSIVE */

@media(max-width:768px) {
    h1 {
        font-size: 5rem;
    }

    h2 {
        font-size: 3rem;
    }

}

@media (max-width: 767px) {
    .botones {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        max-width: 32rem;
    }
}

@media (min-width: 768px) {
    .botones {
        flex-direction: row;
    }

    .btn {
        width: auto;
        min-width: 26rem;
    }
}

@media (min-width: 1024px) {
    .card-page {
        padding-top: 10rem;
    }
}

.card-page {
    min-height: 100vh;
    background: radial-gradient(circle at center, #222 0%, #111 40%, #000 80%);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 6rem 2rem;
}

.card {
    background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
    padding: 4rem;
    border-radius: 2rem;
    max-width: 50rem;
    text-align: center;
    box-shadow: 0 0 4rem rgba(0, 0, 0, 0.8);
}

.titulo-card {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.titulo-card span {
    color: #f7c600;
}

.conv-img {
    width: 100%;
    border-radius: 1rem;
    margin-bottom: 3rem;
}

.grande {
    display: inline-block;
    padding: 2rem 3rem;
}

.contenido {
    position: relative;
    z-index: 10;
    padding: 0 2rem;
    width: 100%;
    max-width: 120rem;
    margin: 0 auto;
}

/* TOP BAR DENTRO DEL CARD */

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

/* BOTON REGRESAR */

.back-btn {
    color: white;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 600;
    background: transparent;
    border: 0.2rem solid rgba(255, 255, 255, 0.4);
    padding: 0.6rem 1.4rem;
    border-radius: 2rem;
    transition: 0.3s ease;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* LOGO */

.top-logo {
    height: 6.5rem;
    width: auto;
}

/* SECCIÓN INFO */

.info-section {
    margin-top: 3rem;
}

.info-section h3 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #f7c600;
}

.info-section p,
.info-section li {
    font-size: 1.6rem;
    line-height: 1.6;
    color: #ddd;
}

.info-section ul {
    padding-left: 2rem;
}

.cta-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
}

.info-section {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.info-card {
    background: linear-gradient(145deg, #141414, #0d0d0d);
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.4);
    transition: 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
}

.info-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.icon {
    width: 2.2rem;
    height: 2.2rem;
    fill: #ff0080;
    flex-shrink: 0;
}

.info-card h3 {
    font-size: 2rem;
    color: #f7c600;
    margin: 0;
}

.info-card h3 {
    font-size: 2rem;
    color: #f7c600;
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.info-card li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.6rem;
    color: #ddd;
}

.info-card li::before {
    content: "";
    width: 0.6rem;
    height: 0.6rem;
    background: linear-gradient(135deg, #ff0080, #a000ff);
    border-radius: 50%;
    flex-shrink: 0;
}

.btn.outline {
    background: transparent;
    border: 2px solid #00b5e2;
    color: #00b5e2;
}

.btn.outline:hover {
    background: #00b5e2;
    color: black;
}

/* BOTÓN SECUNDARIO ELEGANTE */

.btn.ghost {
    background: transparent;
    border: 2px solid transparent;
    border-radius: 1rem;
    padding: 1.2rem 2.8rem;
    font-size: 1.6rem;
    font-weight: 600;
    color: white;
    position: relative;
    transition: 0.3s ease;
}

/* borde degradado */
.btn.ghost::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    padding: 2px;
    background: linear-gradient(135deg, #ff0080, #a000ff);
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* hover */
.btn.ghost:hover {
    background: linear-gradient(135deg, #ff0080, #a000ff);
    box-shadow: 0 0 2rem rgba(255, 0, 128, 0.4);
}

@media (max-width: 768px) {
    .card-page {
        padding: 0;
    }

    .card {
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        padding: 3rem 2rem;
    }
}

@media (max-width: 768px) {
  .card-page {
    padding: 0;
    min-height: 100svh;   
    height: 100svh;
    align-items: stretch; 
  }

  .card {
    width: 100vw;
    max-width: 100vw;
    min-height: 100svh;  
    border-radius: 0;
    padding: 3rem 2rem;
    box-shadow: none;  
  }
}