/* ==========================================================================
   🟡 BRANDING / LOGO 
   ========================================================================== */
.logo-container {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent);
    background: #000;
    transition: transform 0.3s ease;
}

.logo-container:hover {
    transform: scale(1.05);
}

.logo-img, .logo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   ELEMENTOS DE INTERFAZ REUTILIZABLES (BOTONES, CARDS, TEXTOS)
   ========================================================================== */
.btn-primary {
    padding: 10px 22px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    border: none;
    font-weight: 700;
    color: #111;
    cursor: pointer;
    transition: .3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.card-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px;
    transition: .3s;
}

.card-glass:hover {
    transform: translateY(-8px);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    color: var(--accent);
    margin-bottom: 60px;
}

/* ==========================================================================
   🎯 INTERFACES INTERACTIVAS FLOTANTES (REFINADO)
   ========================================================================== */
.floating-btn {
    position: fixed;
    right: 25px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    font-size: 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: none;
    cursor: pointer;
    
    /* 🔥 ESTA LÍNEA ELIMINA LA RAYA DEL HIPERVÍNCULO POR COMPLETO */
    text-decoration: none !important; 
}

/* Evita que la raya aparezca cuando pasas el mouse por encima (Hover) */
.floating-btn:hover, 
.floating-btn:focus, 
.floating-btn:active {
    text-decoration: none !important;
    outline: none;
}

/* Botón de WhatsApp */
.whatsapp-btn {
    bottom: 25px;
    background-color: #25D366;
}
.whatsapp-btn:hover {
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
    color: white !important; /* Mantiene el ícono blanco en el hover */
}