/* Contenedor principal */
.vende-nosotros-container {
    
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
}

/* Banner superior */
.vende-banner {
    width: 100%;
    padding: 60px 20px;
    background: linear-gradient(135deg, #F1EFED, #ffffff);
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #e6e6e6;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.05);
}

.vende-banner h2 {
    font-size: 32px;
    color: #151515;
    font-weight: 700;
}

/* Caja principal */
.vende-nosotros-box {
    background: linear-gradient(135deg, #F1EFED, #ffffff);
    border-radius: 16px;
    padding: 45px 55px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #F1EFED;
    margin-bottom: 40px;
    transition: transform .25s ease, box-shadow .25s ease;
    
}

.vende-nosotros-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 22px rgba(0,0,0,0.1);
}

.vende-nosotros-box h1 {
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
    color: #151515;
    margin-bottom: 20px;
    text-align: center;
}

.vende-nosotros-box p {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
}

/* Botón */
.btn-inscribirme {
    display: inline-block;
    padding: 14px 26px;
    background: #F37021;
    color: #ffffff;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.25s ease;
    
}

.btn-inscribirme:hover {
    background: #d85e1c;
}

/* Beneficios */
.vende-beneficios {
    display: flex;
    gap: 25px;
    margin-top: 10px;
}

.vende-beneficios .beneficio {
    flex: 1;
    background: #ffffff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    border: 1px solid #F1EFED;
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease;
}

.vende-beneficios .beneficio:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.vende-beneficios .beneficio h3 {
    color: #F37021;
    margin-bottom: 10px;
    font-size: 20px;
}

.vende-beneficios .beneficio p {
    color: #444;
    font-size: 15px;
    line-height: 1.5;
}

/* Frase final */
.vende-frase {
    text-align: center;
    margin-top: 50px;
    font-size: 16px;
    font-weight: 500;
    color: #151515;
}
.btn-inscribirme {
    display: block;
    width: fit-content;
    margin: 0 auto;
}
