.logo {
    position: relative;
    display: inline-block;
    width: 200px;
    height: 60px;
    text-decoration: none;
}

.logo__text {
    position: relative;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #4A2545;
    line-height: 1;
}

.logo__text::before {
    content: 'Mensajería';
    position: absolute;
    top: 0;
    left: 0;
    color: #D4AF37;
}

.logo__text::after {
    content: 'Vintage';
    position: absolute;
    top: 30px;
    left: 0;
    color: #4A2545;
}

.logo__icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: 2px solid #4A2545;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F5F3F4;
    transition: all 0.3s ease;
}

.logo__icon::before {
    content: 'M';
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #4A2545;
    line-height: 1;
    position: relative;
    top: -1px;
}

/* Versión para fondos oscuros */
.logo--light .logo__text::before,
.logo--light .logo__text::after {
    color: #D4AF37;
}

.logo--light .logo__icon {
    border-color: #D4AF37;
    background: #4A2545;
}

.logo--light .logo__icon::before {
    color: #D4AF37;
}

/* Versión simplificada (solo icono) */
.logo--icon-only {
    width: 40px;
    height: 40px;
}

.logo--icon-only .logo__text {
    display: none;
}

/* Animación hover */
.logo:hover .logo__icon {
    transform: translateY(-50%) rotate(360deg);
    background: #4A2545;
}

.logo:hover .logo__icon::before {
    color: #D4AF37;
}

/* Responsive */
@media (max-width: 768px) {
    .logo {
        width: 160px;
        height: 48px;
    }

    .logo__text {
        font-size: 22px;
    }

    .logo__text::after {
        top: 24px;
    }

    .logo__icon {
        width: 32px;
        height: 32px;
    }

    .logo__icon::before {
        font-size: 20px;
    }
} 