.navbar-bits {
    background-color: var(--primary-bits);
    padding: 1rem 0;
}

.hero-custom {
    background: linear-gradient(90deg, rgba(31, 78, 95, 0.9) 30%, rgba(31, 78, 95, 0.4) 100%),
        url('https://images.unsplash.com/photo-1534452203293-494d7ddbf7e0?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.btn-register {
    background-color: #f8f9fa;
    color: var(--primary-bits);
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: 0.3s;
    border: none;
    max-width: 100%;
}

.btn-register:hover {
    background-color: var(--secondary-bits);
    color: white;
}

.benefit-card {
    background: white;
    border: none;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    border-bottom: 6px solid var(--secondary-bits);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.icon-box {
    font-size: 3rem;
    color: var(--primary-bits);
    margin-bottom: 20px;
}

/* Sección de Contacto Lateral */
.contact-sidebar {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.btn-whatsapp {
    background-color: #1F4E5F;
    color: white;
    font-weight: 500;
    padding: 12px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 8px;
    text-decoration: none;
}

.step-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.step-number {
    background-color: var(--primary-bits);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    font-weight: bold;
}

footer {
    background-color: var(--primary-bits);
    color: rgba(255, 255, 255, 0.8);
    padding: 20px 0;
    margin-top: 80px;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.competitive-edge {
    background-color: #ffffff;
    border-left: 8px solid var(--secondary-bits);
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    margin-left: 0;
    margin-right: 0;
}

.text-gradient {
    background: linear-gradient(45deg, var(--primary-bits), var(--secondary-bits));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.feature-box {
    padding: 2rem;
    border-radius: 15px;
    background: #ffffff;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: rgba(44, 114, 140, 0.1);
    color: var(--secondary-bits);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.highlight-compare {
    border-left: 4px solid var(--primary-bits);
    padding-left: 15px;
    font-style: italic;
}

.text-primary-bits {
    color: var(--primary-bits) !important;
}

.product-group {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.d-flex-scroll {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    padding-bottom: 15px;
    scrollbar-width: thin;
    scrollbar-color: var(--secondary-bits) transparent;
    -webkit-overflow-scrolling: touch;
}

.product-card-hover {
    min-width: 220px;
    max-width: 220px;
    border: 1px solid #eee !important;
    transition: all 0.3s ease;
    text-decoration: none;
}

.object-fit-cover {
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.feature-badge {
    background: rgba(31, 78, 95, 0.1);
    color: var(--primary-bits);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: 0;
    margin-left: 0;
}