/* Simple Visit Counter Styles */
.svc-counter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 25px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.svc-counter:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
}

.svc-counter .svc-icon {
    font-size: 18px;
}

.svc-counter .svc-number {
    font-weight: 700;
    font-size: 18px;
}

.svc-counter .svc-label {
    opacity: 0.9;
    text-transform: lowercase;
}

/* Estilo minimal */
.svc-style-minimal {
    background: transparent !important;
    color: #666;
    box-shadow: none;
    padding: 5px 10px;
}

.svc-style-minimal:hover {
    transform: none;
    box-shadow: none;
}

/* Estilo dark */
.svc-style-dark {
    background: #1a1a2e !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Estilo badge */
.svc-style-badge {
    background: #e74c3c !important;
    border-radius: 5px;
    font-size: 12px;
    padding: 5px 12px;
}