: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;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: "futura-pt", sans-serif;
    overflow-x: hidden;
}


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);
}

/* contenedor */

.proceso{
width:100%;
display:flex;
justify-content:center;
padding:80px 20px;
box-sizing:border-box;
}

/* imagen */

.proceso-img{
width:100%;
max-width:1200px;
height:auto;
display:block;
}


/* --- FOOTER --- */
footer {
    padding: 100px 0 50px;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.contact-title {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 300;
}

.contact-arrow {
    color: var(--accent-red);
    margin-left: 20px;
}