.bf-container {
    font-family: inherit;
    box-sizing: border-box;
    max-width: 100%;
}

.bf-container * {
    box-sizing: border-box;
}

.bf-group {
    margin-bottom: 20px;
}

.bf-contacto label {
    display: block;
    margin-bottom: 5px;
    color: #4a4a4a;
    font-size: 15px;
}

.bf-contacto input,
.bf-contacto textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #fce4e4;
    background: #fff;
    outline: none;
    color: #333;
}

.bf-btn {
    font-weight: 700;
    letter-spacing: 1.5px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.bf-btn:hover {
    opacity: 0.8;
}

.bf-btn-pink {
    background-color: #fce4e4;
    color: #111;
    padding: 12px 28px;
    font-size: 14px;
}

.bf-btn-dark {
    background-color: #2b2b2b;
    color: #fff;
    padding: 14px;
    width: 100%;
    font-size: 14px;
}

.bf-news-vertical {
    background-color: #fbeff1;
    padding: 40px 30px;
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

.bf-news-vertical .bf-title {
    color: #2b3a4a;
    font-size: 26px;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.bf-news-vertical .bf-subtitle {
    color: #4a4a4a;
    font-size: 15px;
    margin: 0 0 25px 0;
}

.bf-news-vertical input {
    width: 100%;
    padding: 14px;
    border: none;
    background: #fafafa;
    margin-bottom: 10px;
}

.bf-news-horizontal {
    background: #fdfdfd;
    padding: 20px;
    border-radius: 8px;
}

.bf-news-horizontal .bf-flex-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.bf-icon-text {
    display: flex;
    align-items: center;
    gap: 15px;
}

.bf-icon-text p {
    margin: 0;
    color: #333;
    font-size: 18px;
}

.bf-bell-icon {
    position: relative;
    width: 40px;
    height: 40px;
}

.bf-bell-icon svg {
    width: 100%;
    height: 100%;
}

.bf-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.bf-flex-form {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.bf-flex-form input {
    padding: 12px;
    border: 1px solid #fce4e4;
    min-width: 200px;
}

.bf-flex-form .bf-btn-dark {
    width: auto;
    padding: 12px 24px;
}

.bf-response {
    margin-top: 15px;
    font-size: 14px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .bf-news-horizontal .bf-flex-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .bf-flex-form {
        width: 100%;
        flex-direction: column;
    }
    .bf-flex-form input, 
    .bf-flex-form .bf-btn-dark {
        width: 100%;
    }
}