
/* ---------- RESET ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #333233;
    color: #B7B6B7;
}

a { text-decoration: none; }

/* ---------- NAVBAR ---------- */
nav {
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #333233;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
}

nav .logo {
    height: 10vh;
}

nav .nav-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

.btn-login {
    background: #CC354F;
    
    color: #333233;
}


.btn-login:hover {
    background: #B02D44;
}

.btn-register {
    background: #CC354F;
    color: #333233;
}  

.btn-register:hover {
    background: #B02D44;
}

/* ---------- HERO SECTION ---------- */
.hero {
    display: flex;
    padding: 80px 40px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.hero-text {
    max-width: 500px;
}

.hero h1 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #B7B6B7;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.mockup {
    width: 40vmax;
    background: #B7B6B7;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #666;
    font-size: 18px;
    font-style: italic;
}

/* ---------- BENEFICIOS ---------- */
.beneficios {
    padding: 60px 40px;
    text-align: center;
}

.beneficios h2 {
    font-size: 30px;
    margin-bottom: 40px;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.beneficio {
    background: #3D3C3D;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.beneficio h3 {
    margin-bottom: 10px;
}

/* ---------- CÓMO FUNCIONA ---------- */
.pasos {
    padding: 60px 40px;
    text-align: center;
}

.pasos h2 {
    font-size: 30px;
    margin-bottom: 40px;
}

.pasos-linea {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 25px;
}

.paso {
    width: 200px;
    height: 200px;
    background: #3D3C3D;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 20px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    .hero-img {
        margin-top: 40px;
    }
}