/* BOTONES Y ETIQUETAS */
.badge {
    background: rgba(255, 255, 255, 0.15);
    padding: 7px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600; 
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.2);
}

.badge-info {
    background: #e8f3ff;
    color: #1e88e5;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    gap: 8px;
    margin-bottom: 15px;
}

.brand-title {
    font-size: 3rem; 
    color: #0d47a1; 
    font-weight: 800; 
    letter-spacing: -1.5px; 
    line-height: 1.1;
    margin-bottom: 5px;
}

.cta-buttons { display: flex; gap: 15px; margin-bottom: 45px; }

.btn-main, .btn-sec { 
    padding: 16px 32px; 
    border-radius: 50px; 
    text-decoration: none; 
    font-weight: 700; 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    transition: 0.3s; 
}
.btn-main { background: #fff; color: #0d47a1; }
.btn-sec { background: #000; color: #fff; }

.btn-whatsapp-footer {
    background: #25D366; 
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.3s, transform 0.3s;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp-footer:hover { 
    background: #128C7E; 
    transform: translateY(-2px); 
    color: #fff;}

.btn-telegram-footer {
    background: #0088cc; 
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
    transition: background 0.3s, transform 0.3s;
    box-shadow: 0 5px 15px rgba(0, 136, 204, 0.3);
}
.btn-telegram-footer:hover { background: #0077b5; transform: translateY(-2px); color: #fff;}