/* ===== TOPBAR ===== */
.topbar {
    width: 92%;
    margin: 25px auto;
    background: #ffffff;
    border-radius: 25px;
    padding: 22px 35px; /* más alto */
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    position: relative;
}

/* ===== BRAND ===== */
.brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.brand span {
    font-size: 20px;
    font-weight: 700;
    color: #7a1c1c;
    letter-spacing: 1px;
}



/* ===== ACTIONS ===== */
.actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

/* WhatsApp solo icono */
.whatsapp-icon img {
    width: 28px;
    transition: 0.3s ease;
}

.whatsapp-icon img:hover {
    transform: scale(1.15);
}

/* ===== BOTÓN PRINCIPAL ===== */
.btn-main {
    background: #7a1c1c;
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-main:hover {
    background: #a32626;
    transform: translateY(-2px);
}

/* ===== BOTÓN OUTLINE ===== */
.btn-outline {
    border: 2px solid #7a1c1c;
    color: #7a1c1c;
    padding: 8px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Hover del botón */
.btn-outline:hover {
    background: #7a1c1c;
    color: #f5f2ee; /* beige */
    transform: translateY(-2px);
}

/* ===== ICONOS EN BOTONES ===== */
.icon-btn {
    width: 18px;
    height: 18px;
    display: inline-block;
    background-image: url('../imgs/user.png'); /* rojo */
    background-size: contain;
    background-repeat: no-repeat;
    transition: 0.3s;
}

/* Hover cambia imagen */
.btn-outline:hover .user-icon {
    background-image: url('../imgs/user2.png'); /* beige */
}