/* Estilos del sello */
.logo-container {
    position: relative;
    display: inline-block;
    text-decoration: none;
}

.logo-seal {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.seal-border {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid transparent;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FF4500, #FFD700);
    background-size: 300% 300%;
    animation: borderRotate 8s linear infinite;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
}

.seal-content {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center,
        rgba(0,0,0,0.9) 0%,
        rgba(40,40,40,0.9) 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.seal-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        transparent,
        rgba(255,255,255,0.1),
        transparent 30%
    );
    animation: sealSpin 10s linear infinite;
}

.seal-icon {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 0.5rem;
    transform: scale(1.2);
    filter: drop-shadow(0 0 5px rgba(255,215,0,0.5));
}

.seal-text {
    text-align: center;
    line-height: 1.2;
    color: #fff;
}

.seal-brand {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.seal-location {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 0.9;
    letter-spacing: 2px;
}

.seal-city {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #FFD700;
    margin-top: 2px;
}

/* Animaciones del sello */
@keyframes borderRotate {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 300% 50%;
    }
}

@keyframes sealSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.logo-seal:hover .seal-border {
    animation: borderRotate 4s linear infinite;
}

.logo-seal:hover .seal-icon {
    animation: iconPulse 1s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1.2);
    }
    50% {
        transform: scale(1.4);
    }
}

/* Ajustes responsive */
@media (max-width: 768px) {
    .logo-seal {
        width: 100px;
        height: 100px;
    }

    .seal-brand {
        font-size: 0.9rem;
    }

    .seal-location {
        font-size: 0.6rem;
    }

    .seal-city {
        font-size: 0.7rem;
    }

    .seal-icon {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .logo-seal {
        width: 80px;
        height: 80px;
    }

    .seal-brand {
        font-size: 0.8rem;
    }

    .seal-location {
        font-size: 0.5rem;
    }

    .seal-city {
        font-size: 0.6rem;
    }

    .seal-icon {
        font-size: 1.8rem;
    }
}