:root {
    --primary: #25D366;
    --secondary: #1e293b;
    --text-dark: #0f172a;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

/* Cambiado de .beneficios-section a .pro-section */
.pro-section {
    padding: 80px 5%;
    background-color: var(--bg-light);
    text-align: center;
}

/* Cambiado de .container a .wrapper */
.wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.header-group {
    margin-bottom: 50px;
}

.pill-label {
    background: #dcfce7;
    color: #166534;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

.header-group h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.header-group h1 span {
    color: var(--primary);
}

/* Cambiado de .beneficios-grid a .bento-grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* Cambiado de .beneficio-card a .bento-item */
.bento-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    text-align: center;
}

.bento-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-color: var(--primary);
}

.icon-shape {
    width: 60px;
    height: 60px;
    background: #f0fdf4;
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.bento-item h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.bento-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.btn-premium {
    background: var(--primary);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.btn-premium:hover {
    background: #1eb956;
    transform: scale(1.05);
}

.social-proof {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -10px;
}