/* Estilos exclusivos para el logo - logo.css */
.logo {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700 !important;
    font-size: 28px !important;
    letter-spacing: 1px !important;
    position: relative !important;
    padding: 5px 0 !important;
    text-transform: uppercase !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    background: linear-gradient(135deg, #222222 0%, #444444 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.logo::before {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    bottom: 2px !important;
    width: 100% !important;
    height: 2px !important;
    background: linear-gradient(to right, #c9a86a, transparent) !important;
    transform: scaleX(0.7) !important;
    transform-origin: left !important;
    transition: transform 0.3s ease !important;
}

.logo:hover::before {
    transform: scaleX(1) !important;
}

.logo::after {
    content: '◆' !important;
    position: absolute !important;
    left: -15px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: #c9a86a !important;
    font-size: 12px !important;
    -webkit-text-fill-color: #c9a86a !important;
}

.logo span {
    color: #c9a86a !important;
    font-style: italic !important;
    font-weight: 500 !important;
    position: relative !important;
    transition: all 0.3s ease !important;
    -webkit-text-fill-color: #c9a86a !important;
}

.logo span::after {
    content: '' !important;
    position: absolute !important;
    width: 5px !important;
    height: 5px !important;
    border-radius: 50% !important;
    background-color: #c9a86a !important;
    bottom: -3px !important;
    right: -8px !important;
    opacity: 0 !important;
    transform: scale(0) !important;
    transition: all 0.3s ease !important;
}

.logo:hover span::after {
    opacity: 1 !important;
    transform: scale(1) !important;
}