:root {
    --bg-color: #0d0d0d;
    --text-color: #ffffff;
    --border-color: #333333;
    --grey-text: #aaaaaa;
    --font-family: "futura-pt";
}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: "futura-pt", sans-serif;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* --- NUEVA NAVEGACIÓN (Estilo Pastilla de la imagen) --- */
header {
    height: auto;
    background-color: transparent;
    position: fixed;
    top: 25px; /* Separación de la parte superior */
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: center; /* Centra el menú horizontalmente */
}

.nav-pill {
    background: rgba(30, 30, 30, 0.7); /* Fondo oscuro translúcido */
    backdrop-filter: blur(15px); /* Efecto de desenfoque de fondo */
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px; /* Forma de cápsula */
    padding: 8px 10px 8px 24px;
    display: flex;
    align-items: center;
    gap: 35px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.nav-logo img {
    height: 40px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: var(--grey-text);
    font-size: 0.85rem;
    font-weight: 400;
}

.nav-links a:hover {
    color: #fff;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Botón Sign In */
.btn-signin {
    color: var(--grey-text);
    font-size: 0.85rem;
    padding: 8px 18px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
}

.btn-signin:hover {
    border-color: #fff;
    color: #fff;
}

/* Botón Join Waitlist (Resaltado blanco con brillo) */
.btn-waitlist {
    background: #ffffff;
    color: #000;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 30px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4), 0 0 5px rgba(0, 255, 150, 0.2);
}

.btn-waitlist:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

/* SLIDER SECTION */

.slider{
margin-top: 120px;
height:100vh;
width:100%;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
}


/* TITLE */

.title{
margin-bottom:40px;
font-size:18px;
letter-spacing:4px;
opacity:0.7;
}


/* SLIDES CONTAINER */

.slider-container{
padding: 50px;
width:100%;
overflow:hidden;
display:flex;
justify-content:center;
}


/* SLIDES */

.slides{
display:flex;
align-items:center;
gap:20px;
transition:transform .8s ease;
}


/* SLIDE */

.slide{
position:relative;
width:420px;
height:260px;
overflow:hidden;
opacity:.4;
transform:scale(.8);
transition:.6s;
}

.slide img{
width:100%;
height:100%;
object-fit:cover;
}


/* ACTIVE SLIDE */

.slide.active{
width:720px;
height:420px;
opacity:1;
transform:scale(1);
}


/* OVERLAY */

.overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
background:rgba(0,0,0,.3);
opacity:0;
transition:.4s;
}


/* TEXT */

.overlay p{
margin-bottom:15px;
font-size:18px;
}


/* BUTTON */

.overlay a{
    color: white;
    font-size: 0.9rem;
    padding: 8px 18px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
}

.overlay a:hover{
background:white;
color:black;
}


/* HOVER */

.slide:hover img{
filter:blur(4px);
transform:scale(1.1);
}

.slide:hover .overlay{
opacity:1;
}


/* DOTS */

.dots{
margin-top:30px;
display:flex;
gap:10px;
}

.dot{
width:10px;
height:10px;
border-radius:50%;
background:#555;
cursor:pointer;
}

.dot.active{
background:white;
}


/* RESPONSIVE */

@media (max-width:900px){

.slide.active{
width:520px;
height:320px;
}

.slide{
width:260px;
height:160px;
}

}


@media (max-width:600px){

.slides{
gap:20px;
}

.slide.active{
width:320px;
height:200px;
}

.slide{
width:180px;
height:110px;
}

}