@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #0f172a;
    /* Azul oscuro */
    color: #f1f5f9;
    /* Gris claro */
    overflow: hidden;
}

.scroll-container {
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: auto;
}

.section {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    scroll-snap-align: start;
    opacity: 0;
    transition: opacity 0.1s ease-in-out;
}

.section.is-visible {
    opacity: 1;
}

.card {
    background: rgba(30, 41, 59, 0.7);
    /* Azul oscuro semitransparente */
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 3rem;
    max-width: 900px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(100, 116, 139, 0.5);
    /* Borde sutil */
    transform: translateY(20px);
    opacity: 0;
    transition: transform 1s ease-out, opacity 1s ease-out;
}

.section.is-visible .card {
    transform: translateY(0);
    opacity: 1;
}

h1,
h2 {
    font-weight: 700;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background-image: linear-gradient(45deg, #60a5fa, #38bdf8);
    /* Degradado azul */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #94a3b8;
    /* Gris azulado */
}

p {
    font-size: 1.25rem;
    line-height: 1.75;
    color: #cbd5e1;
    /* Gris */
}

ul {
    list-style-type: none;
    padding: 0;
    margin-top: 1.5rem;
}

li {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    background: rgba(51, 65, 85, 0.5);
    /* Fondo de lista */
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    /* Bordes redondeados */
    border: 1px solid rgba(100, 116, 139, 0.3);
    text-align: left;
    display: flex;
    align-items: center;
}

li::before {
    content: '•';
    color: #60a5fa;
    /* Color de viñeta */
    font-size: 1.5rem;
    margin-right: 0.75rem;
}

/* Animación del fondo con formas geométricas */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: -1;
}

.shape {
    position: absolute;
    background: linear-gradient(45deg, #60a5fa, #38bdf8);
    animation: moveShape 20s infinite ease-in-out alternate;
    opacity: 0.2;
    filter: blur(50px);
    border-radius: 50%;
}

.shape:nth-child(1) {
    width: 300px;
    height: 300px;
    top: -10%;
    left: -10%;
    animation-duration: 25s;
}

.shape:nth-child(2) {
    width: 400px;
    height: 400px;
    bottom: -20%;
    right: -20%;
    animation-duration: 20s;
}

.shape:nth-child(3) {
    width: 250px;
    height: 250px;
    top: 50%;
    left: 20%;
    animation-duration: 30s;
}

.shape:nth-child(4) {
    width: 350px;
    height: 350px;
    bottom: 30%;
    right: 10%;
    animation-duration: 22s;
}

@keyframes moveShape {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(200px, 300px) rotate(360deg);
    }
}

section.desktop {
    display: none;
}

.no-bullets {
  list-style-type: none;
}

li::before {
  content: "▶";
  color: #ffffff;
  margin-right: 15px;
}

@media only screen and (min-width: 768px) {
    section.mobiles {
        display: none;
    }
    
    section.desktop {
    display: flex; /* flex/grid si quieres */
  }
}
